Hi out there,
I have got a problem with a CombinedDataset. I use a basic TimeSeriesCollection called "tsCollection" containing a BasicTimeSeries.
I try to do the following: I want to display the tsCollections as a bar chart and abouve I want to display movingAverage and LinearAverage of tsCollection. But when I add
CombinedDataset data = new CombinedDataset();
data.add (tempDataset1);
data.add (tempDataset2);
data contains 4 sets, where tempDatasetX are the sets createt by the PlotFitAlgorithms. How can I "kill" the unneccessaray basic tsCollection?
Thanx!
Joern