Skip to content

Commit

Permalink
revert basic scatter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JCQuintas committed Sep 10, 2024
1 parent 01979f7 commit 9abd5b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/data/charts/scatter/BasicScatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default function BasicScatter() {
},
{
label: 'Series B',
data: data.map((v) => ({ x: v.x1, y: v.y2, id: `${v.id}b` })),
data: data.map((v) => ({ x: v.x1, y: v.y2, id: v.id })),
},
]}
/>
Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/scatter/BasicScatter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default function BasicScatter() {
},
{
label: 'Series B',
data: data.map((v) => ({ x: v.x1, y: v.y2, id: `${v.id}b` })),
data: data.map((v) => ({ x: v.x1, y: v.y2, id: v.id })),
},
]}
/>
Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/scatter/BasicScatter.tsx.preview
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
{
label: 'Series B',
data: data.map((v) => ({ x: v.x1, y: v.y2, id: `${v.id}b` })),
data: data.map((v) => ({ x: v.x1, y: v.y2, id: v.id })),
},
]}
/>

0 comments on commit 9abd5b4

Please # to comment.