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' + } } } }