|
|
|
@ -186,25 +186,35 @@ public class VanChartGaugeDetailAxisPane extends VanChartValueAxisPane {
|
|
|
|
|
public void populateBean(VanChartAxis axis) { |
|
|
|
|
VanChartGaugeAxis gaugeAxis = (VanChartGaugeAxis) axis; |
|
|
|
|
labelTextAttrPane.populate(axis.getTextAttr()); |
|
|
|
|
super.populateBean(gaugeAxis); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected void populateLabel(VanChartAxis axis) { |
|
|
|
|
VanChartGaugeAxis gaugeAxis = (VanChartGaugeAxis) axis; |
|
|
|
|
if (mainTickColor != null) { |
|
|
|
|
mainTickColor.setSelectObject(gaugeAxis.getMainTickColor()); |
|
|
|
|
} |
|
|
|
|
if (secTickColor != null) { |
|
|
|
|
secTickColor.setSelectObject(gaugeAxis.getSecTickColor()); |
|
|
|
|
} |
|
|
|
|
super.populateBean(gaugeAxis); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void updateBean(VanChartAxis axis) { |
|
|
|
|
VanChartGaugeAxis gaugeAxis = (VanChartGaugeAxis) axis; |
|
|
|
|
TextAttr textAttr = axis.getTextAttr(); |
|
|
|
|
labelTextAttrPane.update(textAttr); |
|
|
|
|
super.updateBean(gaugeAxis); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected void updateLabel(VanChartAxis axis) { |
|
|
|
|
VanChartGaugeAxis gaugeAxis = (VanChartGaugeAxis) axis; |
|
|
|
|
if (mainTickColor != null) { |
|
|
|
|
gaugeAxis.setMainTickColor(mainTickColor.getSelectObject()); |
|
|
|
|
} |
|
|
|
|
if (secTickColor != null) { |
|
|
|
|
gaugeAxis.setSecTickColor(secTickColor.getSelectObject()); |
|
|
|
|
} |
|
|
|
|
super.updateBean(gaugeAxis); |
|
|
|
|
} |
|
|
|
|
} |