import { IPSChartCoordinateSystem } from './ipschart-coordinate-system'; import { IPSChartParallel } from './ipschart-parallel'; /** * * 继承父接口类型值[PARALLEL] * @export * @interface IPSChartCoordinateSystemParallel */ export interface IPSChartCoordinateSystemParallel extends IPSChartCoordinateSystem { /** * 平行坐标系界面对象 * * @type {IPSChartParallel} */ getPSChartParallel(): IPSChartParallel | null; /** * 平行坐标系界面对象 * * @type {IPSChartParallel} */ get psChartParallel(): IPSChartParallel | null; /** * 平行坐标系界面对象(必须存在) * * @type {IPSChartParallel} */ getPSChartParallelMust(): IPSChartParallel; }