import { IPSChartPosition } from './ipschart-position'; import { IPSChartSeriesCSNone } from './ipschart-series-csnone'; /** * * 继承父接口类型值[pie,pie3d] * @export * @interface IPSChartSeriesPie */ export interface IPSChartSeriesPie extends IPSChartSeriesCSNone, IPSChartPosition { /** * 圆心 * @type {IModel} */ center: IModel; /** * 最小扇区角度 * @type {number} */ minAngle: number; /** * 无标签扇区角度 * @type {number} */ minShowLabelAngle: number; /** * 半径 * @type {IModel} */ radius: IModel; /** * 展示南丁格尔图 * @type {IModel} */ roseType: IModel; /** * 起始角度 * @type {number} */ startAngle: number; }