15 changed files with 259 additions and 545 deletions
@ -0,0 +1,19 @@ |
|||||||
|
<component name="libraryTable"> |
||||||
|
<library name="report"> |
||||||
|
<CLASSES> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-platform-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-chart-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-core-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/servlet-api.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-performance-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-designer-core-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-third-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-designer-report-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-report-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-designer-feedback-8.0.jar!/" /> |
||||||
|
<root url="jar://$PROJECT_DIR$/lib/report/fr-designer-chart-8.0.jar!/" /> |
||||||
|
</CLASSES> |
||||||
|
<JAVADOC /> |
||||||
|
<SOURCES /> |
||||||
|
</library> |
||||||
|
</component> |
@ -0,0 +1,8 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project version="4"> |
||||||
|
<component name="ProjectModuleManager"> |
||||||
|
<modules> |
||||||
|
<module fileurl="file://$PROJECT_DIR$/plugin-echarts.iml" filepath="$PROJECT_DIR$/plugin-echarts.iml" /> |
||||||
|
</modules> |
||||||
|
</component> |
||||||
|
</project> |
@ -0,0 +1,6 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<project version="4"> |
||||||
|
<component name="VcsDirectoryMappings"> |
||||||
|
<mapping directory="" vcs="Git" /> |
||||||
|
</component> |
||||||
|
</project> |
@ -1,15 +0,0 @@ |
|||||||
package com.fr.solution.plugin.chart.echarts.core.map; |
|
||||||
|
|
||||||
import com.fr.design.mainframe.chart.gui.ChartDataPane; |
|
||||||
import com.fr.design.mainframe.chart.gui.data.report.CategoryPlotMoreCateReportDataContentPane; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by richie on 16/1/29. |
|
||||||
*/ |
|
||||||
public class ChineseMapReportDataContentPane extends CategoryPlotMoreCateReportDataContentPane { |
|
||||||
|
|
||||||
public ChineseMapReportDataContentPane(ChartDataPane parent) { |
|
||||||
super(parent); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
@ -1,14 +0,0 @@ |
|||||||
package com.fr.solution.plugin.chart.echarts.core.map; |
|
||||||
|
|
||||||
import com.fr.design.mainframe.chart.gui.ChartDataPane; |
|
||||||
import com.fr.design.mainframe.chart.gui.data.table.CategoryPlotMoreCateTableDataContentPane; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by richie on 16/1/29. |
|
||||||
*/ |
|
||||||
public class ChineseMapTableDataContentPane extends CategoryPlotMoreCateTableDataContentPane { |
|
||||||
|
|
||||||
public ChineseMapTableDataContentPane(ChartDataPane parent) { |
|
||||||
super(parent); |
|
||||||
} |
|
||||||
} |
|
Before Width: | Height: | Size: 897 B After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 5.5 KiB |
@ -0,0 +1,40 @@ |
|||||||
|
package com.fr.solution.plugin.chart.echarts.ui.map; |
||||||
|
|
||||||
|
import com.fr.chart.chartattr.ChartCollection; |
||||||
|
import com.fr.design.event.UIObserver; |
||||||
|
import com.fr.design.event.UIObserverListener; |
||||||
|
import com.fr.design.mainframe.chart.gui.ChartDataPane; |
||||||
|
import com.fr.design.mainframe.chart.gui.data.report.AbstractReportDataContentPane; |
||||||
|
import com.fr.design.mainframe.chart.gui.data.table.AbstractTableDataContentPane; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by richie on 16/1/29. |
||||||
|
*/ |
||||||
|
public class ChineseMapReportDataContentPane extends AbstractReportDataContentPane implements UIObserver { |
||||||
|
|
||||||
|
public ChineseMapReportDataContentPane(ChartDataPane parent) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected String[] columnNames() { |
||||||
|
return new String[0]; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void populateBean(ChartCollection ob) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void registerChangeListener(UIObserverListener listener) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean shouldResponseChangeListener() { |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package com.fr.solution.plugin.chart.echarts.ui.map; |
||||||
|
|
||||||
|
import com.fr.chart.chartattr.ChartCollection; |
||||||
|
import com.fr.design.event.UIObserver; |
||||||
|
import com.fr.design.event.UIObserverListener; |
||||||
|
import com.fr.design.gui.frpane.UICorrelationPane; |
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.mainframe.chart.gui.ChartDataPane; |
||||||
|
import com.fr.design.mainframe.chart.gui.data.table.AbstractTableDataContentPane; |
||||||
|
|
||||||
|
import javax.swing.*; |
||||||
|
import java.awt.*; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by richie on 16/1/29. |
||||||
|
*/ |
||||||
|
public class ChineseMapTableDataContentPane extends AbstractTableDataContentPane implements UIObserver { |
||||||
|
|
||||||
|
private UICorrelationPane correlationPane; |
||||||
|
|
||||||
|
public ChineseMapTableDataContentPane(ChartDataPane parent) { |
||||||
|
setLayout(new BorderLayout()); |
||||||
|
UILabel label = new UILabel("²âÊÔ²¼¾Ö"); |
||||||
|
setBorder(BorderFactory.createLineBorder(Color.RED)); |
||||||
|
add(label, BorderLayout.NORTH); |
||||||
|
correlationPane = new UICorrelationPane("ÇøÓòÃû", "ÇøÓòÖµ"); |
||||||
|
add(correlationPane, BorderLayout.CENTER); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateBean(ChartCollection ob) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void clearAllBoxList() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void refreshBoxListWithSelectTableData(List columnNameList) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void registerChangeListener(UIObserverListener listener) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean shouldResponseChangeListener() { |
||||||
|
return true; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue