Reputation: 2237
Is there any way that I could embed JFreeChart
into Java Servlet with the ability to have chart's crosshair, zoom in-out?
Upvotes: 0
Views: 238
Reputation: 205785
Alternatively, use java-web-start to launch an application from the web page.
Upvotes: 1
Reputation: 18415
The only way you could get a JFreeChart
into a web page is with an Applet. You can't do this with a servlet alone.
Upvotes: 2