From 5be238fc4f19938fb5fae3aab3abfb1a01814896 Mon Sep 17 00:00:00 2001 From: junjun Date: Tue, 8 Mar 2022 16:00:57 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BB=AA=E8=A1=A8=E7=9B=98=E9=98=88?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/chart/chart/gauge/gauge.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/frontend/src/views/chart/chart/gauge/gauge.js b/frontend/src/views/chart/chart/gauge/gauge.js index 7bcef2c0ec..654088b8f2 100644 --- a/frontend/src/views/chart/chart/gauge/gauge.js +++ b/frontend/src/views/chart/chart/gauge/gauge.js @@ -75,6 +75,19 @@ export function baseGaugeOption(chart_option, chart) { chart_option.series[0].progress = { show: false } + chart_option.series[0].axisTick = { + lineStyle: { + color: 'auto' + } + } + chart_option.series[0].splitLine = { + lineStyle: { + color: 'auto' + } + } + chart_option.series[0].axisLabel = { + color: 'auto' + } } } }