i like to display a FastScatterPlot combined with a LinePlot. Is it somehow possible to combine these charts into a combined plot? Unfortunatelly it doesn't seem so regarding Developers Guide?! At least there is no example. It seems only possbile with a XYDataset, but instead of the FastScatterPlot wich uses a 2 dimensional array to hold the data the XYDataset must be populated with the add() method, like:

DefaultXYDataset dataset = new DefaultXYDataset();    
XYSeries dataSeries = new XYSeries("series 1");
dataSeries.add(xValue, yValue); //populate data: 6.8 million entries!
dataset.addSeries(new String(), dataset )
JFreeChart chart = ChartFactory.createScatterPlot("normaler scatterplot test", "X", "Y", dataset, PlotOrientation.HORIZONTAL, true,false, false);
ChartPanel chartPanel = new ChartPanel(chart, true);
getContentPane.add(chartPanel);

which is way to slow and finaly results in a stack overflow (heap size is already 512MB)! So therefore I'm using the FastScatterPlot which succeeds in displaying the chart. But as mentioned I don't know how to combine it with e.g. a LineChart. Here is the shortened code so far:

double[][] data = new double[2][6800000]; //6.8 million entries!!!! static data!
//populate data ...
FastScatterPlot plot = new FastScatterPlot(data, new NumberAxis("X"), new NumberAxis("Y"));
JFreeChart chart = new JFreeChart("Fast Scatter Plot", plot);
ChartPanel chartPanel = new ChartPanel(chart, true);
getContentPane.add(chartPanel);
link|improve this question

67% accept rate
Are you trying to create a combined axis plot or an overlaid plot? – trashgod Jun 9 '11 at 17:40
Have you tried using the series.add(x, y, false) method instead of add(x, y)? The slowdown could be caused by the SeriesChangeEvent which is fired when you call the add(x, y) method. – Jes Jun 22 '11 at 11:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.