import { medDateData, multiCategory } from 'reaviz-data-utils'; import { RadialAxis, RadialAxisArcSeries, RadialAxisTick, RadialAxisTickLabel, RadialAxisTickLine, RadialAxisTickSeries } from 'reaviz'; import { GradientStop, RadialGradient } from 'reaviz'; import { RadialAreaChart } from 'reaviz'; import { RadialArea, RadialAreaSeries, RadialLine, RadialPointSeries } from 'reaviz'; export default { tags: ['snapshot'], title: 'Charts/Area Chart/Radial/Axis', component: RadialAreaChart, subcomponents: { RadialAreaSeries, RadialArea, RadialLine, RadialPointSeries } }; export const SemiCircle = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={-0.5 * Math.PI} endAngle={0.5 * Math.PI} /> ); export const SemiCircleMultiSeries = () => ( , ]} /> } /> } /> } axis={} startAngle={-0.5 * Math.PI} endAngle={0.5 * Math.PI} /> ); export const QuarterCircle = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={0} endAngle={0.5 * Math.PI} isClosedCurve={false} /> ); export const QuarterCircleMultiSeries = () => ( , ]} /> } /> } /> } axis={} startAngle={0} endAngle={0.5 * Math.PI} isClosedCurve={false} /> ); export const CustomCircle = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={-Math.PI} endAngle={0.5 * Math.PI} isClosedCurve={false} /> ); export const CustomCircle2 = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={-Math.PI} endAngle={-0.25 * Math.PI} isClosedCurve={false} /> ); export const CustomCircle3 = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={-0.75 * Math.PI} endAngle={0.75 * Math.PI} isClosedCurve={false} /> ); export const CustomCircle4 = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={-0.25 * Math.PI} endAngle={0.25 * Math.PI} isClosedCurve={false} /> ); export const NoAutoRotateLabels = () => ( } />} /> } axis={ } ticks={ } label={} /> } /> } /> } startAngle={0} endAngle={0.5 * Math.PI} isClosedCurve={false} /> );