Java jfreechart stick scatterplot?
Asked Answered
G

1

0

I am using jfreechart at the moment and want to generate a kind of scatterplot. I have 100000s of datapoints. Now I want to change each 2D point into a (3D-) stick by usind the points z-value as the stick height. The whole plot should be zoomable! Thats it. Is this possible in jfreechart? How can I do this without bucking or delay within the zooming action?

Thanks for any suggestions!

Achim

Glottalized answered 16/12, 2011 at 9:0 Comment(0)
S
2

For ~106 data points, FastScatterPlot is a good choice. For larger numbers, you'll have to test.

Addendum: The good news is that zooming works very well, and you can set the initial zoom area as needed.

Addendum: For speed, FastScatterPlot uses an internal render() method, instead of a plug-in renderer. Rather than rendering a shape, consider using a spectrum of colors that vary in saturation or transparency.

Schmuck answered 16/12, 2011 at 10:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.