Skip to content

Commit

Permalink
set enableLegendSlider to default false
Browse files Browse the repository at this point in the history
  • Loading branch information
severinlandolt committed Oct 19, 2023
1 parent 36987d6 commit a804e2c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/chart-elements/AreaChart/AreaChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const AreaChart = React.forwardRef<HTMLDivElement, AreaChartProps>((props, ref)
noDataText,
className,
onValueChange,
enableLegendSlider = true,
enableLegendSlider = false,
customTooltip,
...other
} = props;
Expand Down
2 changes: 1 addition & 1 deletion src/components/chart-elements/BarChart/BarChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const BarChart = React.forwardRef<HTMLDivElement, BarChartProps>((props, ref) =>
onValueChange,
customTooltip,
className,
enableLegendSlider = true,
enableLegendSlider = false,
...other
} = props;
const CustomTooltip = customTooltip;
Expand Down
2 changes: 1 addition & 1 deletion src/components/chart-elements/LineChart/LineChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const LineChart = React.forwardRef<HTMLDivElement, LineChartProps>((props, ref)
noDataText,
className,
onValueChange,
enableLegendSlider = true,
enableLegendSlider = false,
customTooltip,
...other
} = props;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const ScatterChart = React.forwardRef<HTMLDivElement, ScatterChartProps>((props,
onValueChange,
customTooltip,
className,
enableLegendSlider = true,
enableLegendSlider = false,
...other
} = props;
const CustomTooltip = customTooltip;
Expand Down
2 changes: 1 addition & 1 deletion src/components/text-elements/Legend/Legend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const Legend = React.forwardRef<HTMLOListElement, LegendProps>((props, ref) => {
className,
onClickLegendItem,
activeLegend,
enableLegendSlider = true,
enableLegendSlider = false,
...other
} = props;
const scrollableRef = React.useRef<HTMLInputElement>(null);
Expand Down

0 comments on commit a804e2c

Please sign in to comment.