fix(图表): 修复表格类图表在没有配置整体字体时,配置字体大小无效的问题

This commit is contained in:
jianneng-fit2cloud
2024-12-10 17:30:06 +08:00
parent 3af5599a78
commit 85843a3816

View File

@@ -65,7 +65,7 @@ export function getCustomTheme(chart: Chart): S2Theme {
)
const scrollBarColor = DEFAULT_BASIC_STYLE.tableScrollBarColor
const scrollBarHoverColor = resetRgbOpacity(scrollBarColor, 3)
const textFontFamily = chart.fontFamily ? chart.fontFamily : FONT_FAMILY
const textFontFamily = chart.fontFamily && chart.fontFamily !== 'inherit' ? chart.fontFamily : FONT_FAMILY
const theme: S2Theme = {
background: {
color: '#00000000'