import { ScatterPlot, ScatterPoint, ScatterSeries } from 'reaviz'; import { categoryData, largeSignalChartData, singleDateData } from 'reaviz-data-utils'; import { Bar, BarChart, BarSeries } from 'reaviz'; import { Bubble, BubbleChart, BubbleSeries } from 'reaviz'; import { Area, AreaChart, AreaSeries, Line } from 'reaviz'; import { LineChart, LineSeries } from 'reaviz'; import { ChartShallowDataShape } from 'reaviz'; export default { title: 'Utils/Glow' }; export const ScatterGlow = () => ( v.metadata.severity + 5} /> } /> } /> ); export const BarGlow = () => ( } /> } /> ); const bubbleData: ChartShallowDataShape[] = [ { key: 'AWS', data: 100 }, { key: 'SendGrid', data: 45 }, { key: 'Okta', data: 75 }, { key: 'Twillo', data: 25 } ]; export const BubbleGlow = () => ( } /> } /> ); export const AreaGlow = () => ( } /> } /> ); export const LineGlow = () => ( } /> } /> );