I want to stop my chart and then restart it without a line between the points that are stopped and restarted. I have another series that will print in between the stops and starts. Is there a way to do this? Thanks.
Allyson
Stop and restart a chart
If you add a null data item to a series this will give you a discontinuous plot.
Code: Select all
XYSeries series1 = new XYSeries("First");
series1.add(1.0, 1.0);
series1.add(2.0, 4.0);
series1.add(3.0, 3.0);
series1.add(4.0, null);
series1.add(5.0, 5.0);
series1.add(6.0, 7.0);