|
|
|
@ -4,8 +4,13 @@ import com.fr.chart.chartattr.Plot;
|
|
|
|
|
import com.fr.design.beans.BasicBeanPane; |
|
|
|
|
import com.fr.design.condition.ConditionAttributesPane; |
|
|
|
|
import com.fr.design.i18n.Toolkit; |
|
|
|
|
import com.fr.design.mainframe.chart.gui.ChartDataPane; |
|
|
|
|
import com.fr.design.mainframe.chart.gui.ChartStylePane; |
|
|
|
|
import com.fr.design.mainframe.chart.gui.data.report.AbstractReportDataContentPane; |
|
|
|
|
import com.fr.design.mainframe.chart.gui.data.table.AbstractTableDataContentPane; |
|
|
|
|
import com.fr.design.mainframe.chart.gui.type.AbstractChartTypePane; |
|
|
|
|
import com.fr.van.chart.multilayer.data.MultiPiePlotReportDataContentPane; |
|
|
|
|
import com.fr.van.chart.multilayer.data.MultiPiePlotTableDataContentPane; |
|
|
|
|
import com.fr.van.chart.multilayer.other.VanChartMultiPieConditionPane; |
|
|
|
|
import com.fr.van.chart.multilayer.style.VanChartMultiPieSeriesPane; |
|
|
|
|
import com.fr.van.chart.vanchart.AbstractIndependentVanChartUI; |
|
|
|
@ -47,6 +52,17 @@ public class MultiPieIndependentVanChartInterface extends AbstractIndependentVan
|
|
|
|
|
// };
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
//图表数据结构 恢复用注释。删除下面两个方法 getTableDataSourcePane getReportDataSourcePane。
|
|
|
|
|
@Override |
|
|
|
|
public AbstractTableDataContentPane getTableDataSourcePane(Plot plot, ChartDataPane parent){ |
|
|
|
|
return new MultiPiePlotTableDataContentPane(parent); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public AbstractReportDataContentPane getReportDataSourcePane(Plot plot, ChartDataPane parent){ |
|
|
|
|
return new MultiPiePlotReportDataContentPane(parent); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BasicBeanPane<Plot> getPlotSeriesPane(ChartStylePane parent, Plot plot){ |
|
|
|
|
return new VanChartMultiPieSeriesPane(parent, plot); |
|
|
|
|
} |
|
|
|
|