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);
series.add(x, y, false)method instead ofadd(x, y)? The slowdown could be caused by theSeriesChangeEventwhich is fired when you call theadd(x, y)method. – Jes Jun 22 '11 at 11:22