Browse Source

CHART-10790 fix:旧图表-GIS地图-key值配置无法触发保存

feature/big-screen
shine 5 years ago
parent
commit
a8bc5220fe
  1. 6
      designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/type/GisMapPlotPane.java

6
designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/type/GisMapPlotPane.java

@ -88,6 +88,11 @@ public class GisMapPlotPane extends AbstractDeprecatedChartTypePane {
return ChartConstants.GIS_CHAER; return ChartConstants.GIS_CHAER;
} }
@Override
public String getPlotID() {
return ChartConstants.GIS_CHAER;
}
protected String[] getTypeLayoutPath() { protected String[] getTypeLayoutPath() {
return new String[]{"/com/fr/design/images/chart/GisMapPlot/layout/0.png", return new String[]{"/com/fr/design/images/chart/GisMapPlot/layout/0.png",
"/com/fr/design/images/chart/GisMapPlot/layout/1.png", "/com/fr/design/images/chart/GisMapPlot/layout/1.png",
@ -157,7 +162,6 @@ public class GisMapPlotPane extends AbstractDeprecatedChartTypePane {
* 更新界面内容 * 更新界面内容
*/ */
public void populateBean(Chart chart) { public void populateBean(Chart chart) {
typeDemo.get(0).isPressing = true;
GisMapPlot plot = (GisMapPlot) chart.getPlot(); GisMapPlot plot = (GisMapPlot) chart.getPlot();
if(plot.isGisType()){ if(plot.isGisType()){

Loading…
Cancel
Save