import { IPSChartObject } from './ipschart-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSChartLegend */ export interface IPSChartLegend extends IPSChartObject { /** * 图例位置 * @type {string} */ legendPos: string; /** * 显示图例 * @type {boolean} */ showLegend: boolean; }