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.

45 lines
1.3 KiB

2 years ago
package com.fr.plugin.heatpointmapbox;
import com.fr.design.gui.frpane.AttributeChangeListener;
import com.fr.design.mainframe.chart.AbstractChartAttrPane;
import com.fr.design.mainframe.chart.gui.data.report.AbstractReportDataContentPane;
import com.fr.extended.chart.AbstractExtendedChartTableDataPane;
import com.fr.extended.chart.AbstractExtendedChartUIProvider;
import com.fr.plugin.heatpointmapbox.data.HeatPointMapDataPane;
import com.fr.plugin.heatpointmapbox.data.HeatPointMapReportDataPane;
import com.fr.plugin.heatpointmapbox.ui.HeatPointMapStylePane;
/**
* @author xx
* @date 2022/8/19
*/
public class HeatPointMapChartUI extends AbstractExtendedChartUIProvider {
@Override
protected AbstractExtendedChartTableDataPane getTableDataSourcePane() {
return new HeatPointMapDataPane();
}
@Override
protected AbstractReportDataContentPane getReportDataSourcePane() {
return new HeatPointMapReportDataPane();
}
@Override
public String getIconPath() {
return "com/fr/plugin/heatpointmapbox/images/icon.png";
}
@Override
public AbstractChartAttrPane[] getAttrPaneArray(AttributeChangeListener attributeChangeListener) {
return new AbstractChartAttrPane[]{
new HeatPointMapStylePane(attributeChangeListener)
};
}
@Override
public String[] getDemoImagePath() {
return new String[]{"com/fr/plugin/heatpointmapbox/images/demo.png"};
}
}