import { IPSDEUILogicGroupDetail } from '../../dataentity/logic/ipsdeuilogic-group-detail'; /** * * 子接口类型识别属性[] * @export * @interface IPSDEChartLogic */ export interface IPSDEChartLogic extends IPSDEUILogicGroupDetail { /** * 图表坐标轴名称 * @type {string} */ psDEChartAxesName: string; /** * 图表坐标轴名称 * @type {string} */ getPSDEChartAxesName(): string; /** * 图表序列名称 * @type {string} */ psDEChartSeriesName: string; /** * 图表序列名称 * @type {string} */ getPSDEChartSeriesName(): string; }