import { IPSChartPosition } from './ipschart-position'; import { IPSChartSeriesCSNone } from './ipschart-series-csnone'; /** * * 继承父接口类型值[funnel] * @export * @interface IPSChartSeriesFunnel */ export interface IPSChartSeriesFunnel extends IPSChartSeriesCSNone, IPSChartPosition { /** * 漏斗图方向 * @type {string} */ funnelAlign: string; /** * 最大面积 * @type {IModel} */ maxSize: IModel; /** * 最大值 * @type {number} */ maxValue: number; /** * 最小面积 * @type {IModel} */ minSize: IModel; /** * 最小值 * @type {number} */ minValue: number; }