Skip to content

Commit ff11558

Browse files
[UIK-4320][d3-chart] returned default test data
1 parent 37b7046 commit ff11558

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stories/components/d3-chart/docs/examples/bar-chart/basic-usage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Demo = () => {
1616
const data = Array(5)
1717
.fill({})
1818
.map((d, i) => ({
19-
category: `Google AI Mode ${i} Tops`,
19+
category: `Category ${i}`,
2020
bar: Math.random() * 10,
2121
}));
2222

stories/components/d3-chart/docs/examples/bar-chart/grouped-bars.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const Demo = () => {
5656
const data = Array(5)
5757
.fill({})
5858
.map((d, i) => ({
59-
category: `Google AI Mode ${i}`,
59+
category: `Category ${i}`,
6060
bar1: Math.random() * 10,
6161
bar2: Math.random() * 10,
6262
}));

0 commit comments

Comments
 (0)