Reputation: 1750
I have implemented gantt chart using jfreechart. I want to know how can I get this chart accessed from client side. Also I do not want just image of the chart, I also want the zooming functionality alongside it. How to achieve this? Please help.
Upvotes: 1
Views: 374
Reputation: 66
I think you must catch client event and handle it from server side, and of course reload the image with the changes.
Upvotes: 0
Reputation: 205875
Can you please elaborate more?
While minimally interactive charts are possible in a servlet context, a fully interactive desktop application may be made available from the server via Java Web Start. Among the JFreeChart samples, the JWS demo best illustrates the potential.
Upvotes: 1