Browse Source

Pull request #13540: REPORT-112501 模板主题管理英文显示不全

Merge in DESIGN/design from ~OBO/design-obo:final/11.0 to final/11.0

* commit 'c903dd6523e28d27271b3459474abfcf3f8cb586':
  REPORT-112501 模板主题管理英文显示不全
final/11.0
Obo-王学仁 5 months ago
parent
commit
c7821abc94
  1. 5
      designer-base/src/main/java/com/fr/design/mainframe/theme/edit/chart/ChartTitleAndBackgroundStylePane.java

5
designer-base/src/main/java/com/fr/design/mainframe/theme/edit/chart/ChartTitleAndBackgroundStylePane.java

@ -83,10 +83,13 @@ public class ChartTitleAndBackgroundStylePane extends AbstractChartStylePane {
}
protected Component[][] getComponent() {
String chartAreaBgLabelName = Toolkit.i18nText("Fine-Design_Chart_Area_Background_Color");
UILabel chartAreaBgLabel = new UILabel(chartAreaBgLabelName);
chartAreaBgLabel.setToolTipText(chartAreaBgLabelName);
return new Component[][]{
new Component[]{chartFontPane, null},
new Component[]{null, null},
new Component[]{new UILabel(Toolkit.i18nText("Fine-Design_Chart_Area_Background_Color")), typeComboBox},
new Component[]{chartAreaBgLabel, typeComboBox},
new Component[]{null, centerPane},
new Component[]{new UILabel(Toolkit.i18nText("Fine-Design_Chart_Grid_Line_Color")), mainGridColor}
};

Loading…
Cancel
Save