|
|
@ -61,17 +61,17 @@ public class VanChartGaugeLabelDetailPane extends VanChartPlotLabelDetailPane { |
|
|
|
return TableLayoutHelper.createTableLayoutPane(getLabelStyleComponents(plot), row, col); |
|
|
|
return TableLayoutHelper.createTableLayoutPane(getLabelStyleComponents(plot), row, col); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected boolean getFontSizeAuto() { |
|
|
|
protected boolean isFontSizeAuto() { |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected boolean getFontColorAuto() { |
|
|
|
protected boolean isFontColorAuto() { |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected ChartTextAttrPane initTextFontPane() { |
|
|
|
protected ChartTextAttrPane initTextFontPane() { |
|
|
|
|
|
|
|
|
|
|
|
return new ChartTextAttrPaneWithAuto(getFontSizeAuto(), getFontColorAuto()) { |
|
|
|
return new ChartTextAttrPaneWithAuto(isFontSizeAuto(), isFontColorAuto()) { |
|
|
|
protected double[] getRowSize() { |
|
|
|
protected double[] getRowSize() { |
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
return new double[]{p, p}; |
|
|
|
return new double[]{p, p}; |
|
|
@ -205,10 +205,12 @@ public class VanChartGaugeLabelDetailPane extends VanChartPlotLabelDetailPane { |
|
|
|
super.update(detail); |
|
|
|
super.update(detail); |
|
|
|
|
|
|
|
|
|
|
|
detail.setCustom(true); |
|
|
|
detail.setCustom(true); |
|
|
|
if (align != null && align.getSelectedItem() != null) { |
|
|
|
if (align != null) { |
|
|
|
|
|
|
|
if (align.getSelectedItem() != null) { |
|
|
|
detail.setAlign(align.getSelectedItem()); |
|
|
|
detail.setAlign(align.getSelectedItem()); |
|
|
|
} else if (align != null) { |
|
|
|
} else { |
|
|
|
align.setSelectedItem(detail.getAlign()); |
|
|
|
align.setSelectedItem(detail.getAlign()); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|