UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 463 B
import type React from 'react'; import type { IBoxPlotChartSpec } from '@visactor/vchart'; import type { BaseChartProps } from './BaseChart'; export interface BoxPlotChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IBoxPlotChartSpec>, 'type'> { } export declare const BoxPlotChart: React.ForwardRefExoticComponent<BoxPlotChartProps & { children?: React.ReactNode; } & { type?: 'boxPlot'; } & React.RefAttributes<any>>;