|
|
|
@ -8,13 +8,18 @@ import com.fr.design.dialog.BasicPane;
|
|
|
|
|
import com.fr.design.gui.frpane.AttributeChangeListener; |
|
|
|
|
import com.fr.design.i18n.Toolkit; |
|
|
|
|
import com.fr.design.mainframe.chart.AbstractChartAttrPane; |
|
|
|
|
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.plugin.chart.base.VanChartConstants; |
|
|
|
|
import com.fr.van.chart.designer.other.VanChartInteractivePaneWithOutSort; |
|
|
|
|
import com.fr.van.chart.designer.other.VanChartOtherPane; |
|
|
|
|
import com.fr.van.chart.designer.style.VanChartStylePane; |
|
|
|
|
import com.fr.van.chart.vanchart.AbstractIndependentVanChartUI; |
|
|
|
|
import com.fr.van.chart.wordcloud.designer.data.WordCloudPlotReportDataContentPane; |
|
|
|
|
import com.fr.van.chart.wordcloud.designer.data.WordCloudPlotTableDataContentPane; |
|
|
|
|
import com.fr.van.chart.wordcloud.designer.other.VanChartWordCloudConditionPane; |
|
|
|
|
import com.fr.van.chart.wordcloud.designer.style.VanChartWordCloudSeriesPane; |
|
|
|
|
import com.fr.van.chart.wordcloud.designer.type.VanChartWordCloudTypePane; |
|
|
|
@ -57,6 +62,16 @@ public class WordCloudIndependentVanChartInterface extends AbstractIndependentVa
|
|
|
|
|
return "com/fr/design/images/form/toolbar/wordcloud.png"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public AbstractReportDataContentPane getReportDataSourcePane(Plot plot, ChartDataPane parent) { |
|
|
|
|
return new WordCloudPlotReportDataContentPane(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public AbstractTableDataContentPane getTableDataSourcePane(Plot plot, ChartDataPane parent) { |
|
|
|
|
return new WordCloudPlotTableDataContentPane(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public BasicBeanPane<Plot> getPlotSeriesPane(ChartStylePane parent, Plot plot) { |
|
|
|
|
return new VanChartWordCloudSeriesPane(parent, plot); |
|
|
|
|