|
|
@ -72,7 +72,7 @@ public class ChartValuePane extends ChartAxisUsePane<Axis>{ |
|
|
|
|
|
|
|
|
|
|
|
axisLineStylePane = new ChartAxisLineStylePane(); |
|
|
|
axisLineStylePane = new ChartAxisLineStylePane(); |
|
|
|
zeroPane = aliagnZero4Second(); |
|
|
|
zeroPane = aliagnZero4Second(); |
|
|
|
axisReversed = new UICheckBox(Inter.getLocText("AxisReversed")); |
|
|
|
axisReversed = new UICheckBox(Inter.getLocText("FR-Designer_AxisReversed")); |
|
|
|
unitCombox = new UIComboBox(ChartConstants.UNIT_I18N_VALUES); |
|
|
|
unitCombox = new UIComboBox(ChartConstants.UNIT_I18N_VALUES); |
|
|
|
formatPane = new FormatPane(); |
|
|
|
formatPane = new FormatPane(); |
|
|
|
axisLabelPane = new ChartAxisLabelPane(); |
|
|
|
axisLabelPane = new ChartAxisLabelPane(); |
|
|
@ -151,11 +151,10 @@ public class ChartValuePane extends ChartAxisUsePane<Axis>{ |
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
double f = TableLayout.FILL; |
|
|
|
double f = TableLayout.FILL; |
|
|
|
double[] columnSize = { LayoutConstants.CHART_ATTR_TOMARGIN,p,f}; |
|
|
|
double[] columnSize = { LayoutConstants.CHART_ATTR_TOMARGIN,p,f}; |
|
|
|
double[] rowSize = { p, p, p}; |
|
|
|
double[] rowSize = { p, p}; |
|
|
|
Component[][] component = new Component[][]{ |
|
|
|
Component[][] component = new Component[][]{ |
|
|
|
new Component[]{null,initMinMaxValue(),null}, |
|
|
|
new Component[]{null,initMinMaxValue(),null}, |
|
|
|
new Component[]{null, addLogarithmicPane2ValuePane(), null}, |
|
|
|
new Component[]{null, addLogarithmicPane2ValuePane(), addLogText()}, |
|
|
|
new Component[]{null, null, addLogText()}, |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
return TableLayoutHelper.createTableLayoutPane(component, rowSize, columnSize); |
|
|
|
return TableLayoutHelper.createTableLayoutPane(component, rowSize, columnSize); |
|
|
|
} |
|
|
|
} |
|
|
@ -172,8 +171,8 @@ public class ChartValuePane extends ChartAxisUsePane<Axis>{ |
|
|
|
// 返回对数相关界面. 百分比 没有此界面.
|
|
|
|
// 返回对数相关界面. 百分比 没有此界面.
|
|
|
|
protected JPanel addLogarithmicPane2ValuePane() { |
|
|
|
protected JPanel addLogarithmicPane2ValuePane() { |
|
|
|
JPanel labelLogPane = FRGUIPaneFactory.createLeftFlowZeroGapBorderPane(); |
|
|
|
JPanel labelLogPane = FRGUIPaneFactory.createLeftFlowZeroGapBorderPane(); |
|
|
|
labelLogPane.add(logBox = new UICheckBox(Inter.getLocText("Logarithmic")+":")); |
|
|
|
labelLogPane.add(logBox = new UICheckBox(Inter.getLocText("FR-Designer_Logarithmic")+":")); |
|
|
|
labelLogPane.add(new UILabel(Inter.getLocText("Chart_Log_Base"))); |
|
|
|
labelLogPane.add(new UILabel(Inter.getLocText("FR-Designer_Chart_Log_Base"))); |
|
|
|
|
|
|
|
|
|
|
|
logBaseField = new UITextField(4); |
|
|
|
logBaseField = new UITextField(4); |
|
|
|
logBaseField.setText("10"); |
|
|
|
logBaseField.setText("10"); |
|
|
@ -222,7 +221,7 @@ public class ChartValuePane extends ChartAxisUsePane<Axis>{ |
|
|
|
* @return 返回标题. |
|
|
|
* @return 返回标题. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public String title4PopupWindow() { |
|
|
|
public String title4PopupWindow() { |
|
|
|
return Inter.getLocText("Chart_F_Radar_Axis"); |
|
|
|
return Inter.getLocText("FR-Designer_Chart_F_Radar_Axis"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|