blob: 0d826074fda256fd7e4ab0e360bb6f7a9b78ed24 [file] [log] [blame]
import React from 'react';
import { SuperChart } from '@superset-ui/core';
import dummyDatasource from '../../../../../shared/dummyDatasource';
import data from '../data';
export const yAxisBounds = () => (
<div className="container">
<h2>yAxisBounds</h2>
<pre>yAxisBounds=undefined</pre>
<SuperChart
chartType="line"
width={400}
height={200}
datasource={dummyDatasource}
queriesData={[{ data }]}
formData={{
richTooltip: true,
showLegend: false,
vizType: 'line',
}}
/>
<pre>yAxisBounds=[0, 60000]</pre>
<SuperChart
chartType="line"
width={400}
height={200}
datasource={dummyDatasource}
queriesData={[{ data }]}
formData={{
richTooltip: true,
showLegend: false,
vizType: 'line',
yAxisBounds: [0, 60000],
}}
/>
<pre>yAxisBounds=[null, 60000]</pre>
<SuperChart
chartType="line"
width={400}
height={200}
datasource={dummyDatasource}
queriesData={[{ data }]}
formData={{
richTooltip: true,
showLegend: false,
vizType: 'line',
yAxisBounds: [null, 60000],
}}
/>
<pre>yAxisBounds=[40000, null]</pre>
<SuperChart
chartType="line"
width={400}
height={200}
datasource={dummyDatasource}
queriesData={[{ data }]}
formData={{
richTooltip: true,
showLegend: false,
vizType: 'line',
yAxisBounds: [40000, null],
}}
/>
<pre>yAxisBounds=[40000, null] with Legend</pre>
<SuperChart
chartType="line"
width={400}
height={200}
datasource={dummyDatasource}
queriesData={[{ data }]}
formData={{
richTooltip: true,
showLegend: true,
vizType: 'line',
yAxisBounds: [40000, null],
}}
/>
</div>
);