Java jfreechart stick scatterplot?

前端 未结 1 1587
庸人自扰
庸人自扰 2020-12-22 06:47

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

相关标签:
1条回答
  • 2020-12-22 07:21

    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.

    0 讨论(0)
提交回复
热议问题