Merge pull request #13784 from dataease/pr@dev-v2@fix_gauge_color

fix(图表): 修复仪表盘颜色配置不生效
This commit is contained in:
wisonic-s 2024-12-03 17:51:46 +08:00 committed by GitHub
commit 91494f69c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,9 +147,7 @@ export function getTheme(chart: Chart) {
} }
} }
if (chart.fontFamily) { if (chart.fontFamily) {
theme.styleSheet = { theme.styleSheet.fontFamily = chart.fontFamily
fontFamily: chart.fontFamily
}
} }
return theme return theme
} }