帆软报表设计器源代码。
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.
 
 
 
 

26 lines
765 B

package com.fr.design.chart.axis;
import com.fr.chart.chartattr.Plot;
import com.fr.design.mainframe.chart.gui.style.axis.ChartValuePane;
import com.fr.general.Inter;
/**
* Created by IntelliJ IDEA.
* Author : Richer
* Version: 6.5.6
* Date : 11-12-6
* Time : 上午9:51
*/
public class XYChartStyleAxisPane extends BinaryChartStyleAxisPane {
public XYChartStyleAxisPane(Plot plot) {
super(plot);
}
protected AxisStyleObject getXAxisPane(Plot plot) {
return new AxisStyleObject(Inter.getLocText("ChartF-X_Axis"), new ChartValuePane());
}
protected AxisStyleObject getYAxisPane(Plot plot) {
return new AxisStyleObject(Inter.getLocText("ChartF-Y_Axis"), new ChartValuePane());
}
}