@gitlab/ui
Version:
GitLab UI Components
35 lines (32 loc) • 732 B
JavaScript
import { documentedStoriesOf } from '../../../../documentation/documented_stories';
import { GlChart } from '../../../../charts';
import readme from './chart.md';
const components = {
GlChart,
};
documentedStoriesOf('charts|chart', readme).add('default', () => ({
props: {},
components,
data() {
return {
options: {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
},
yAxis: {
type: 'value',
},
series: [
{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'bar',
},
],
},
};
},
template: `<gl-chart
:options="options"
/>`,
}));