13 lines
422 B
Svelte
13 lines
422 B
Svelte
<script lang="typescript">
|
|
import type { I18n } from "anki/i18n";
|
|
import type { GraphBounds } from "./graph-helpers";
|
|
export let bounds: GraphBounds;
|
|
export let i18n: I18n;
|
|
const noData = i18n.tr(i18n.TR.STATISTICS_NO_DATA);
|
|
</script>
|
|
|
|
<g class="no-data">
|
|
<rect x="0" y="0" width={bounds.width} height={bounds.height} />
|
|
<text x="{bounds.width / 2}," y={bounds.height / 2}>{noData}</text>
|
|
</g>
|