CombindDataset Problems

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Joern Muehlencord

CombindDataset Problems

Post by Joern Muehlencord » Wed Apr 17, 2002 1:12 pm

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

Locked