2020-06-23 07:38:54 +02:00
|
|
|
<script lang="typescript">
|
2020-11-01 05:26:58 +01:00
|
|
|
import type { GraphBounds } from "./graph-helpers";
|
2020-06-23 07:38:54 +02:00
|
|
|
export let bounds: GraphBounds;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<g
|
|
|
|
class="x-ticks no-domain-line"
|
|
|
|
transform={`translate(0,${bounds.height - bounds.marginBottom})`} />
|
|
|
|
<g class="y-ticks no-domain-line" transform={`translate(${bounds.marginLeft}, 0)`} />
|
2020-08-05 06:49:57 +02:00
|
|
|
<g
|
|
|
|
class="y2-ticks no-domain-line"
|
|
|
|
transform={`translate(${bounds.width - bounds.marginRight}, 0)`} />
|