@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
20 lines (19 loc) • 709 B
TypeScript
import { IChartField } from '@qn-pandora/app-sdk';
import { IStatusPanelEventParams } from '../../constants/action-event';
import ChartCommonActionService from './base-chart-action';
/**
* 状态矩阵图实现Link Service
*/
export default class StatusPanelActionService extends ChartCommonActionService<IStatusPanelEventParams> {
toEvent(params: IStatusPanelEventParams): import("../..").ICommonEvent;
toActionToken(params: IStatusPanelEventParams): {
row: IKeyValues<any>;
click: {
name: any;
value: any;
name1: any;
value1: any;
};
};
getFieldValue(fields: IChartField[], originRow: any[][], field: string): any;
}