Browse Source

Merge pull request #6593 in DESIGN/design from release/11.0 to feature/x

* commit 'daf133a7242e210789a65073ec27ec7beb4b9020':
  CHART-21805 fix:cpt组件中的图表 主题中有的属性 不跟随属性 全部设置成自定义
feature/x
superman 3 years ago
parent
commit
7212fe30fb
  1. 3
      designer-chart/src/main/java/com/fr/design/chart/ChartTypePane.java

3
designer-chart/src/main/java/com/fr/design/chart/ChartTypePane.java

@ -156,6 +156,9 @@ public class ChartTypePane extends ChartCommonWizardPane implements CallbackEven
}
if (!ChartEditContext.supportTheme() && chart4Update instanceof VanChart) {
//主题中有的属性 不跟随属性 全部设置成自定义
((VanChart) chart4Update).setThemeCustom();
//主题中没有的 根据主题深浅色自动 的属性 全部设置成自定义
((VanChart) chart4Update).setAutoThemeCustom();
}

Loading…
Cancel
Save