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.
24 lines
741 B
24 lines
741 B
8 years ago
|
package com.fr.plugin.chart.bar;
|
||
|
|
||
|
import com.fr.design.dialog.BasicPane;
|
||
|
import com.fr.design.gui.frpane.AttributeChangeListener;
|
||
|
import com.fr.plugin.chart.attr.plot.VanChartAxisPlot;
|
||
|
import com.fr.plugin.chart.designer.style.VanChartStylePane;
|
||
|
import com.fr.plugin.chart.designer.style.axis.bar.VanChartBarAxisPane;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* Created by Mitisky on 16/6/8.
|
||
|
*/
|
||
|
public class VanChartBarStylePane extends VanChartStylePane {
|
||
|
public VanChartBarStylePane(AttributeChangeListener listener) {
|
||
|
super(listener);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void createVanChartAxisPane(List<BasicPane> paneList, VanChartAxisPlot plot) {
|
||
|
paneList.add(new VanChartBarAxisPane(plot, VanChartBarStylePane.this));
|
||
|
}
|
||
|
}
|