UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

8 lines (7 loc) 384 B
import type { IBoxPlotSeriesSpec } from '../../series/box-plot/interface'; import type { ICartesianChartSpec } from '../cartesian/interface'; import type { IChartExtendsSeriesSpec } from '../../typings/spec/common'; export interface IBoxPlotChartSpec extends ICartesianChartSpec, IChartExtendsSeriesSpec<IBoxPlotSeriesSpec> { type: 'boxPlot'; series?: IBoxPlotSeriesSpec[]; }