Is there a library to generate same charts for the same data, both in Java and Javascript?
My task is both:
- display some flashy dynamic chart in a browser, better with dynamic tooltips, zooming and so on (I'm thinking Javascript here)
- and generate the same (or similar enough) charts on server side, in Java, for automatically sending them in emails (no browser at all in this scenario).
I'd like to avoid Flash for iPhone interoperability.
There are some static server-side charts like Eastwood/JFreeChart, but I'd like to make it more alive in browser.
Yes I can reload static images via Ajax. Are there other options?