diff --git a/src/stories/chart-elements/AreaChart.stories.tsx b/src/stories/chart-elements/AreaChart.stories.tsx index dad5cdf2c..0643bfa66 100644 --- a/src/stories/chart-elements/AreaChart.stories.tsx +++ b/src/stories/chart-elements/AreaChart.stories.tsx @@ -189,11 +189,8 @@ export const NoAxes: Story = { }, }; -export const NoYAxis: Story = { - args: { - showYAxis: false, - startEndOnly: true, - }, +export const NoYAxisStartEndOnly: Story = { + args: { showYAxis: false, startEndOnly: true }, }; //Custom tooltips diff --git a/src/stories/chart-elements/BarChart.stories.tsx b/src/stories/chart-elements/BarChart.stories.tsx index 9f8cb495c..e858679f8 100644 --- a/src/stories/chart-elements/BarChart.stories.tsx +++ b/src/stories/chart-elements/BarChart.stories.tsx @@ -167,13 +167,6 @@ export const MultipleZeroValues: Story = { }, }; -export const NoAxes: Story = { - args: { - showXAxis: false, - showYAxis: false, - }, -}; - export const RotateXLabelsHorizontal: Story = { args: { data: longBaseChartData, @@ -189,6 +182,14 @@ export const RotateXLabelVertical: Story = { }, }; +export const NoAxes: Story = { + args: { showXAxis: false, showYAxis: false }, +}; + +export const NoYAxisStartEndOnly: Story = { + args: { showYAxis: false, startEndOnly: true }, +}; + //Custom tooltips const customTooltipColors: Color[] = ["cyan"]; const customTooltipIndex = "month"; diff --git a/src/stories/chart-elements/LineChart.stories.tsx b/src/stories/chart-elements/LineChart.stories.tsx index af1eed717..08be7af59 100644 --- a/src/stories/chart-elements/LineChart.stories.tsx +++ b/src/stories/chart-elements/LineChart.stories.tsx @@ -142,10 +142,11 @@ export const LongIndexNameAndPreserveStartEnd: Story = { }; export const NoAxes: Story = { - args: { - showXAxis: false, - showYAxis: false, - }, + args: { showXAxis: false, showYAxis: false }, +}; + +export const NoYAxisStartEndOnly: Story = { + args: { showYAxis: false, startEndOnly: true }, }; export const RotateXLabels: Story = {