import { IPSChartCoordinateSystem } from './ipschart-coordinate-system'; import { IPSChartObject } from './ipschart-object'; /** * * 子接口类型识别属性[type] * @export * @interface IPSChartCoordinateSystemControl */ export interface IPSChartCoordinateSystemControl extends IPSChartObject { /** * 基础配置Json内容 * @type {string} */ baseOptionJOString: string; /** * 图表坐标系统 * * @type {IPSChartCoordinateSystem} */ getPSChartCoordinateSystem(): IPSChartCoordinateSystem | null; /** * 图表坐标系统 * * @type {IPSChartCoordinateSystem} */ get psChartCoordinateSystem(): IPSChartCoordinateSystem | null; /** * 图表坐标系统(必须存在) * * @type {IPSChartCoordinateSystem} */ getPSChartCoordinateSystemMust(): IPSChartCoordinateSystem; /** * 部件类型 * @type {string} */ type: string; }