scatterplot « LineChart « JFreeChart Q&A





1. Combined Charts with FastScatterPlot and LineChart @ JFreeChart with Big Data (6.8 million entries ~80MB)    stackoverflow.com

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 ...

2. scatterplot and linechart    jfree.org

JFreeChart does not have a special class for scatter plot. However, you can get the XYLineAndShapeRenderer from your chart using the getPlotRenderer method. Then apply the setShapesVisible and setLinesVisible methods to the renderer to get the plot you want. If renderer is your XYLineAndShapeRenderer instance, then renderer.setShapesVisible(true); renderer.setLinesVisible(false); would give you a scatter plot (without lines). Using different permutations of boolean ...