diff --git a/docs/src/examples/components/Text/truncate-axis-labels.svelte b/docs/src/examples/components/Text/truncate-axis-labels.svelte index 1bb95d44d..2869b17ee 100644 --- a/docs/src/examples/components/Text/truncate-axis-labels.svelte +++ b/docs/src/examples/components/Text/truncate-axis-labels.svelte @@ -5,21 +5,15 @@ const data = [ { - date: new Date('2026-01-22T05:00:00.000Z'), value: 47, - baseline: 100, label: 'This is 1st really long text' }, { - date: new Date('2026-01-23T05:00:00.000Z'), value: 27, - baseline: 20, label: 'This is 2nd really long text' }, { - date: new Date('2026-01-24T05:00:00.000Z'), value: 82, - baseline: 26, label: 'This is 3rd really long text' } ]; diff --git a/docs/src/examples/components/Text/word-wrap-axis-labels.svelte b/docs/src/examples/components/Text/word-wrap-axis-labels.svelte index 958d385ea..7b613f1ad 100644 --- a/docs/src/examples/components/Text/word-wrap-axis-labels.svelte +++ b/docs/src/examples/components/Text/word-wrap-axis-labels.svelte @@ -4,21 +4,15 @@ const data = [ { - date: new Date('2026-01-22T05:00:00.000Z'), value: 67, - baseline: 100, label: 'This is\n1st really\nlong text' }, { - date: new Date('2026-01-23T05:00:00.000Z'), value: 97, - baseline: 20, label: 'This is\n2nd really\nlong text' }, { - date: new Date('2026-01-24T05:00:00.000Z'), value: 61, - baseline: 26, label: 'This is\n3rd really\nlong text' } ];