mirror of
https://github.com/ankitects/anki.git
synced 2025-12-06 19:37:11 -05:00
9 lines
315 B
Svelte
9 lines
315 B
Svelte
<script lang="typescript">
|
|
import { GraphBounds } from "./graphs";
|
|
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)`} />
|