UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

8 lines (7 loc) 353 B
import type { ICartesianChartSpec } from '../cartesian/interface'; import type { ILineSeriesSpec } from '../../series/line/interface'; import type { IChartExtendsSeriesSpec } from '../../typings'; export interface ILineChartSpec extends ICartesianChartSpec, IChartExtendsSeriesSpec<ILineSeriesSpec> { type: 'line'; series?: ILineSeriesSpec[]; }