import React from 'react'; import { StoryFn, Meta } from '@storybook/react-webpack5'; import { Card } from 'react-magma-dom'; import { CarbonChart, CarbonChartProps, CarbonChartType } from '.'; export default { component: CarbonChart, title: 'CarbonChart/Bullet', argTypes: { isInverse: { control: { type: 'boolean', }, }, type: { control: { type: 'select' }, options: Object.values(CarbonChartType), }, }, } as Meta; const Template: StoryFn = args => ( ); export const BasicBullet = { render: Template, args: { isInverse: false, type: CarbonChartType.bullet, dataSet: [ { title: 'Item E', group: 'D3', ranges: [350, 650, 980], marker: 1575, value: 400, }, { title: 'Item D', group: 'D2', ranges: [750, 1200, null], marker: 1725, value: 2100, }, { title: 'Item C', group: 'D3', ranges: [350, 500, 1005], marker: 1340, value: 550, }, { title: 'Item B', group: 'D1', ranges: [300, 895, 1600], marker: 1455, value: 1000, }, { title: 'Item A', group: 'D1', ranges: [800, 1000, 1400], marker: 1275, value: 250, }, ], options: { title: 'Basic bullet', axes: { bottom: { mapsTo: 'value', extendLinearDomainBy: 'marker', }, left: { scaleType: 'labels', mapsTo: 'title', }, right: { scaleType: 'labels-ratio', mapsTo: 'title', }, }, height: '251px', }, }, };