@visactor/vchart
Version:
charts lib based @visactor/VGrammar
8 lines (7 loc) • 396 B
TypeScript
import type { IChartExtendsSeriesSpec } from '../../typings/spec/common';
import type { IRangeAreaSeriesSpec } from '../../series/range-area/interface';
import type { ICartesianChartSpec } from '../cartesian/interface';
export interface IRangeAreaChartSpec extends ICartesianChartSpec, IChartExtendsSeriesSpec<IRangeAreaSeriesSpec> {
type: 'rangeArea';
series?: IRangeAreaSeriesSpec[];
}