JavaFX offers great possibilities to design Java applications. The e(fx)clipse project of Tom Schindl has made it available for Eclipse RCP / OSGi application development. To me it seems the future of the UI technologies for Java desktop applications.
It has a nice Chart package included, but it has certain limitations: while it is good to show for example 12 month sales as bar chart and some line charts with few hundred data points, the performance is not acceptable for large time series with for example 10.000 data points. The reason seems to be the approach that data points are objects (nodes) in the scenegraph rather than rendering an image on a canvas.
I propose to port SWTChart to a JavaFX version. I spent a few hours for a proof-of-concept and the results where great so far:
I belive that such a JavaFX version would be of great benefit for the open source and Java / Eclipse community.
Some info on my PoC: