UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

7 lines (6 loc) 325 B
import type { ISunburstSeriesSpec } from '../../series/sunburst/interface'; import type { IChartExtendsSeriesSpec, IChartSpec } from '../../typings/spec/common'; export interface ISunburstChartSpec extends IChartSpec, IChartExtendsSeriesSpec<ISunburstSeriesSpec> { type: 'sunburst'; series?: ISunburstSeriesSpec[]; }