Browse Source

Merge pull request #1199 in DESIGN/design from ~ZHENG/c-design:release/10.0 to release/10.0

* commit 'dea6bf3ea0f969fe167d32026465ba46659c8208':
  CHART-10790 fix:旧图表-GIS地图-key值配置无法触发保存
feature/big-screen
zheng 5 years ago
parent
commit
9d9c6b0ffe
  1. 8
      designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/type/GisMapPlotPane.java

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

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

Loading…
Cancel
Save