Skip to content

Commit

Permalink
docs(DualAxed): fix variants (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
N1MBER authored Oct 4, 2023
1 parent ec14702 commit 145a57e
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/components/DualAxes/__stand__/DualAxes.variants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,30 +40,34 @@ const Variants = () => {
// geometry,
color: colors[0],
smooth,
seriesField: 'value',
connectNulls: true,
isGroup,
isPercent,
isRange,
isStack,
legend: getLegend({ layout: 'horizontal', position: 'top-right' }),
point: {
size: pointSize,
size: pointSize || 1,
style: {
stroke: 'none',
},
},
},
{
// geometry,
color: colors[1],
smooth,
connectNulls: true,
seriesField: 'count',
isGroup,
isPercent,
isRange,
legend: getLegend({ layout: 'horizontal', position: 'top-right' }),
isStack,
legend: getLegend({ layout: 'horizontal', position: 'top-right' }),
point: {
size: pointSize,
size: pointSize || 1,
style: {
stroke: 'none',
},
},
},
],
Expand Down

0 comments on commit 145a57e

Please sign in to comment.