Browse Source

CHART-18881 单元格图表有时候无法点出图表属性面板

feature/10.0
Henry.Wang 4 years ago
parent
commit
fb1534f3ea
  1. 12
      designer-chart/src/main/java/com/fr/design/mainframe/ChartPropertyPane.java

12
designer-chart/src/main/java/com/fr/design/mainframe/ChartPropertyPane.java

@ -24,14 +24,8 @@ public class ChartPropertyPane extends BaseChartPropertyPane {
* 创建图表属性表实例. * 创建图表属性表实例.
*/ */
private synchronized static ChartPropertyPane getInstance() { private synchronized static ChartPropertyPane getInstance() {
//创建新图表时,创建属性表配置面板 return new ChartPropertyPane();
if (singleton == null) {
singleton = new ChartPropertyPane();
} }
return singleton;
}
private static ChartPropertyPane singleton;
protected TargetComponentContainer container = new TargetComponentContainer(); protected TargetComponentContainer container = new TargetComponentContainer();
@ -160,8 +154,4 @@ public class ChartPropertyPane extends BaseChartPropertyPane {
chartEditPane.setSupportCellData(supportCellData); chartEditPane.setSupportCellData(supportCellData);
} }
} }
public synchronized static void clear() {
singleton = null;
}
} }
Loading…
Cancel
Save