|
|
@ -113,7 +113,7 @@ public class EffectItemGroup { |
|
|
|
Chart chart= (Chart) chartCollection.getChart(index, ChartProvider.class); |
|
|
|
Chart chart= (Chart) chartCollection.getChart(index, ChartProvider.class); |
|
|
|
Plot plot = chart.getPlot(); |
|
|
|
Plot plot = chart.getPlot(); |
|
|
|
if (plot == null) { |
|
|
|
if (plot == null) { |
|
|
|
break; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
SourceNode chartSourceNode = SourceNodeUtils.createSourceNode(plot, chartCollection.getChartName(index), cellSourceNode); |
|
|
|
SourceNode chartSourceNode = SourceNodeUtils.createSourceNode(plot, chartCollection.getChartName(index), cellSourceNode); |
|
|
|
initChartPlot(plot, chartSourceNode, false); |
|
|
|
initChartPlot(plot, chartSourceNode, false); |
|
|
@ -131,7 +131,7 @@ public class EffectItemGroup { |
|
|
|
Chart chart= (Chart) chartCollection.getChart(index, ChartProvider.class); |
|
|
|
Chart chart= (Chart) chartCollection.getChart(index, ChartProvider.class); |
|
|
|
Plot plot = chart.getPlot(); |
|
|
|
Plot plot = chart.getPlot(); |
|
|
|
if (plot == null) { |
|
|
|
if (plot == null) { |
|
|
|
break; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
SourceNode plotSourceNode = SourceNodeUtils.createSourceNode(plot, chartCollection.getChartName(index), null); |
|
|
|
SourceNode plotSourceNode = SourceNodeUtils.createSourceNode(plot, chartCollection.getChartName(index), null); |
|
|
|
initChartPlot(plot, plotSourceNode, false); |
|
|
|
initChartPlot(plot, plotSourceNode, false); |
|
|
|