Browse Source

Pull request #1751: CHART-14264 修改配色面板样式

Merge in DESIGN/design from ~QINGHUI.LIU/design:release/10.0 to release/10.0

* commit '6a348cafe42913cada511d9f639222bd4625214b':
  CHART-14264 修改配色面板样式
  修改兼容方式
  CHART-14228 向下兼容网格线
feature/big-screen
Qinghui.Liu 4 years ago
parent
commit
06a33f4b97
  1. 3
      designer-chart/src/main/java/com/fr/van/chart/designer/component/VanChartFillStylePane.java

3
designer-chart/src/main/java/com/fr/van/chart/designer/component/VanChartFillStylePane.java

@ -144,8 +144,9 @@ public class VanChartFillStylePane extends BasicBeanPane<AttrFillStyle> implemen
double f = TableLayout.FILL;
double e = TableLayout4VanChartHelper.EDIT_AREA_WIDTH;
double[] columnSize = {f, e};
double[] rowSize = {p, p};
double[] rowSize = {p, p, p};
Component[][] components = new Component[][]{
new Component[]{null, null},
new Component[]{new UILabel(Toolkit.i18nText("Fine-Design_Chart_Match_Color_Scheme")), styleSelectBox},
new Component[]{null, customPane},

Loading…
Cancel
Save