From 79f14632bb832e82b7eb6db8b5ed6923c6c92cce Mon Sep 17 00:00:00 2001 From: lijiahangmax Date: Sat, 21 Dec 2024 01:51:55 +0800 Subject: [PATCH] =?UTF-8?q?:zap:=20=E5=8E=BB=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E9=85=8D=E7=BD=AE.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- orion-visor-ui/src/types/echarts.ts | 10 ---------- orion-visor-ui/src/types/global.ts | 5 ----- 2 files changed, 15 deletions(-) delete mode 100644 orion-visor-ui/src/types/echarts.ts diff --git a/orion-visor-ui/src/types/echarts.ts b/orion-visor-ui/src/types/echarts.ts deleted file mode 100644 index 170a4da8..00000000 --- a/orion-visor-ui/src/types/echarts.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { CallbackDataParams } from 'echarts/types/dist/shared'; - -export interface ToolTipFormatterParams extends CallbackDataParams { - axisDim: string; - axisIndex: number; - axisType: string; - axisId: string; - axisValue: string; - axisValueLabel: string; -} diff --git a/orion-visor-ui/src/types/global.ts b/orion-visor-ui/src/types/global.ts index 0e7eefd7..d859fb8d 100644 --- a/orion-visor-ui/src/types/global.ts +++ b/orion-visor-ui/src/types/global.ts @@ -46,8 +46,3 @@ export interface DataGrid { } export type TimeRanger = [string, string]; - -export interface GeneralChart { - xAxis: string[]; - data: Array<{ name: string; value: number[] }>; -}