@visactor/vchart
Version:
charts lib based @visactor/VGrammar
10 lines (9 loc) • 528 B
TypeScript
import type { IProgressChartSpec } from '../interface';
import type { ICartesianAxisSpec } from '../../../component/axis/cartesian/interface';
import type { ILinearProgressSeriesSpec } from '../../../series/progress/linear/interface';
import type { IChartExtendsSeriesSpec } from '../../../typings';
export interface ILinearProgressChartSpec extends IProgressChartSpec, IChartExtendsSeriesSpec<ILinearProgressSeriesSpec> {
type: 'linearProgress';
axes?: ICartesianAxisSpec[];
series?: ILinearProgressSeriesSpec[];
}