|
|
|
@ -11,23 +11,23 @@ import com.fr.design.beans.BasicBeanPane;
|
|
|
|
|
import com.fr.design.beans.FurtherBasicBeanPane; |
|
|
|
|
import com.fr.design.chart.fun.ChartTypeUIProvider; |
|
|
|
|
import com.fr.design.chart.gui.ChartWidgetOption; |
|
|
|
|
import com.fr.design.chartinterface.AreaIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.BarIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.BubbleIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.ColumnIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.CustomIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.DonutIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.FunnelIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.GanttIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.GisMapIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.LineIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.MapIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.MeterIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.PieIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.RadarIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.RangeIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.StockIndependentChartInterface; |
|
|
|
|
import com.fr.design.chartinterface.XYScatterIndependentChartInterface; |
|
|
|
|
import com.fr.design.type.ui.AreaChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.BarChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.BubbleChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.ColumnChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.CustomChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.DonutChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.FunnelChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.GanttChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.GisMapChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.LineChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.MapChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.MeterChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.PieChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.RadarChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.RangeChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.StockChartTypeUI; |
|
|
|
|
import com.fr.design.type.ui.XYScatterChartTypeUI; |
|
|
|
|
import com.fr.design.condition.ConditionAttributesPane; |
|
|
|
|
import com.fr.design.gui.core.WidgetOption; |
|
|
|
|
import com.fr.design.gui.frpane.AttributeChangeListener; |
|
|
|
@ -205,23 +205,23 @@ public class ChartTypeInterfaceManager implements ExtraChartDesignClassManagerPr
|
|
|
|
|
|
|
|
|
|
private static void readDefault() { |
|
|
|
|
|
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.COLUMN_CHART, new ColumnIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.LINE_CHART, new LineIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.BAR_CHART, new BarIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.PIE_CHART, new PieIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.AREA_CHART, new AreaIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.SCATTER_CHART, new XYScatterIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.BUBBLE_CHART, new BubbleIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.RADAR_CHART, new RadarIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.STOCK_CHART, new StockIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.METER_CHART, new MeterIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.RANGE_CHART, new RangeIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.CUSTOM_CHART, new CustomIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.GANTT_CHART, new GanttIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.DONUT_CHART, new DonutIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.MAP_CHART, new MapIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.GIS_CHAER, new GisMapIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.FUNNEL_CHART, new FunnelIndependentChartInterface()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.COLUMN_CHART, new ColumnChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.LINE_CHART, new LineChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.BAR_CHART, new BarChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.PIE_CHART, new PieChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.AREA_CHART, new AreaChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.SCATTER_CHART, new XYScatterChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.BUBBLE_CHART, new BubbleChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.RADAR_CHART, new RadarChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.STOCK_CHART, new StockChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.METER_CHART, new MeterChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.RANGE_CHART, new RangeChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.CUSTOM_CHART, new CustomChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.GANTT_CHART, new GanttChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.DONUT_CHART, new DonutChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.MAP_CHART, new MapChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.GIS_CHAER, new GisMapChartTypeUI()); |
|
|
|
|
addChartTypeInterface(DEPRECATED_CHART_PRIORITY, ChartConstants.FUNNEL_CHART, new FunnelChartTypeUI()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static void addChartTypeInterface(String priority, String plotID, ChartTypeUIProvider provider) { |
|
|
|
|