|
|
|
@ -50,10 +50,10 @@ public class VanChartAlertValuePane extends BasicBeanPane<VanChartAlertValue> {
|
|
|
|
|
private static final double LINE_WIDTH_DEFAULT_VALUE = 1; |
|
|
|
|
|
|
|
|
|
private UIButtonGroup alertAxis; |
|
|
|
|
protected TinyFormulaPane alertValue; |
|
|
|
|
protected LineTypeComboBox alertLineStyle;//线型
|
|
|
|
|
protected UISpinner lineWidthSpinner;//线宽
|
|
|
|
|
protected ColorSelectBox alertLineColor; |
|
|
|
|
private TinyFormulaPane alertValue; |
|
|
|
|
private LineTypeComboBox alertLineStyle;//线型
|
|
|
|
|
private UISpinner lineWidthSpinner;//线宽
|
|
|
|
|
private ColorSelectBox alertLineColor; |
|
|
|
|
|
|
|
|
|
private UIButtonGroup alertTextPosition; |
|
|
|
|
private TinyFormulaPane alertText; |
|
|
|
@ -67,6 +67,22 @@ public class VanChartAlertValuePane extends BasicBeanPane<VanChartAlertValue> {
|
|
|
|
|
initComponents(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public TinyFormulaPane getAlertValue() { |
|
|
|
|
return alertValue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public LineTypeComboBox getAlertLineStyle() { |
|
|
|
|
return alertLineStyle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public UISpinner getLineWidthSpinner() { |
|
|
|
|
return lineWidthSpinner; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public ColorSelectBox getAlertLineColor() { |
|
|
|
|
return alertLineColor; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initComponents() { |
|
|
|
|
alertValue = new TinyFormulaPane(); |
|
|
|
|
|
|
|
|
|