You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
7 years ago
|
package com.fr.plugin.demo;
|
||
|
|
||
|
import com.fr.design.gui.icombobox.UIComboBox;
|
||
|
import com.fr.extended.chart.AbstractExtendedChartTableDataPane;
|
||
|
|
||
|
/**
|
||
|
* Created by shine on 2018/3/24.
|
||
|
*/
|
||
|
public class DemoTableDataPane extends AbstractExtendedChartTableDataPane<DemoDataConfig>{
|
||
|
private UIComboBox xComboBox;
|
||
|
private UIComboBox yComboBox;
|
||
|
private UIComboBox zComboBox;
|
||
|
|
||
|
@Override
|
||
|
protected String[] fieldLabel() {
|
||
|
return new String[]{
|
||
|
"X轴",
|
||
|
"Y轴",
|
||
|
"Z轴"
|
||
|
};
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected UIComboBox[] filedComboBoxes() {
|
||
|
if (xComboBox == null) {
|
||
|
xComboBox = new UIComboBox();
|
||
|
yComboBox = new UIComboBox();
|
||
|
zComboBox = new UIComboBox();
|
||
|
}
|
||
|
return new UIComboBox[]{
|
||
|
xComboBox,
|
||
|
yComboBox,
|
||
|
zComboBox
|
||
|
};
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void populate(DemoDataConfig dataConf) {
|
||
|
populateField(xComboBox, dataConf.getX());
|
||
|
populateField(yComboBox, dataConf.getY());
|
||
|
populateField(zComboBox, dataConf.getZ());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected DemoDataConfig update() {
|
||
|
DemoDataConfig dataConfig = new DemoDataConfig();
|
||
|
|
||
|
updateField(xComboBox, dataConfig.getX());
|
||
|
updateField(yComboBox, dataConfig.getY());
|
||
|
updateField(zComboBox, dataConfig.getZ());
|
||
|
|
||
|
return dataConfig;
|
||
|
}
|
||
|
}
|