mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-11-30 02:58:31 +08:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
import { CallbackDataParams } from 'echarts/types/dist/shared';
|
|
|
|
export interface ToolTipFormatterParams extends CallbackDataParams {
|
|
axisDim: string;
|
|
axisIndex: number;
|
|
axisType: string;
|
|
axisId: string;
|
|
axisValue: string;
|
|
axisValueLabel: string;
|
|
}
|