diff --git a/packages/grafana-ui/src/components/Graph/Graph.story.tsx b/packages/grafana-ui/src/components/Graph/Graph.story.tsx index 0e72bda3f51..4ea98a79d25 100644 --- a/packages/grafana-ui/src/components/Graph/Graph.story.tsx +++ b/packages/grafana-ui/src/components/Graph/Graph.story.tsx @@ -85,7 +85,7 @@ export default { disable: true, }, controls: { - exclude: ['className', 'series', 'timeRange', 'ariaLabel'], + exclude: ['className', 'ariaLabel'], }, }, args: { @@ -107,7 +107,7 @@ export default { tooltipMode: { control: { type: 'radio', options: ['multi', 'single'] } }, timeZone: { control: { type: 'radio', options: ['browser', 'utc'] } }, width: { control: { type: 'range', min: 200, max: 800 } }, - height: { control: { type: 'range', min: 200, max: 800 } }, + height: { control: { type: 'range', min: 200, max: 1700, step: 300 } }, lineWidth: { control: { type: 'range', min: 1, max: 10 } }, }, }; diff --git a/packages/grafana-ui/src/components/Graph/GraphWithLegend.story.tsx b/packages/grafana-ui/src/components/Graph/GraphWithLegend.story.tsx index 792e929568c..f5b14baa7f0 100644 --- a/packages/grafana-ui/src/components/Graph/GraphWithLegend.story.tsx +++ b/packages/grafana-ui/src/components/Graph/GraphWithLegend.story.tsx @@ -15,7 +15,7 @@ export default { disable: true, }, controls: { - exclude: ['className', 'series', 'timeRange', 'ariaLabel', 'legendDisplayMode'], + exclude: ['className', 'ariaLabel', 'legendDisplayMode'], }, }, argTypes: { @@ -24,7 +24,7 @@ export default { rightAxisSeries: { name: 'Right y-axis series, i.e. A,C' }, timeZone: { control: { type: 'radio', options: ['browser', 'utc'] } }, width: { control: { type: 'range', min: 200, max: 800 } }, - height: { control: { type: 'range', min: 200, max: 800 } }, + height: { control: { type: 'range', min: 1700, step: 300 } }, lineWidth: { control: { type: 'range', min: 1, max: 10 } }, }, };