fixing vizes

This commit is contained in:
Maxime Beauchemin
2025-03-18 18:38:21 -07:00
parent 48df49d89c
commit 83f47d3ca1
3 changed files with 7 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ export const defaultGaugeSeriesOption = (
},
axisLine: {
lineStyle: {
color: [[1, theme.colors.primary.light4]],
color: [[1, theme.colorSplit]],
},
},
axisLabel: {
@@ -42,7 +42,7 @@ export const defaultGaugeSeriesOption = (
},
},
detail: {
color: 'auto',
color: theme.colorText,
},
});

View File

@@ -194,6 +194,7 @@ export default function transformProps(
}%`,
],
fontSize: FONT_SIZE_MULTIPLIERS.detailFontSize * fontSize,
color: theme.colorText,
},
};
if (

View File

@@ -325,7 +325,10 @@ export default function transformProps(
selectedMode,
...getChartPadding(showLegend, legendOrientation, legendMargin),
animation: DEFAULT_GRAPH_SERIES_OPTION.animation,
label: DEFAULT_GRAPH_SERIES_OPTION.label,
label: {
...DEFAULT_GRAPH_SERIES_OPTION.label,
color: theme.colorText,
},
lineStyle: DEFAULT_GRAPH_SERIES_OPTION.lineStyle,
emphasis: DEFAULT_GRAPH_SERIES_OPTION.emphasis,
},