import { IParam } from '../../common'; import { ICtrlModel } from './i-ctrl-model'; /** * 图表部件模型接口 * * @export * @interface IChartModel * @extends {ICtrlModel} */ export interface IChartModel extends ICtrlModel { /** * 图表序列 * * @type {IParam[]} * @memberof IChartModel */ serieses: IParam[]; }