Reputation:
What is the best Graph/Charts Solution for
PHP that is Interactive (at least anchor points).
PS. I can't use flash, and it shouldn't relay on internet :(
Upvotes: 3
Views: 3136
Reputation: 14938
If flash is not possible you can try JS charts like
HighCharts Offer a free licence for non-commercial use, based on jQuery
GRaphael MIT Licence , based on the famous raphael library
Flot With less interaction but still free
JSCharts A non-free alternative
Full PHP graph like jpgraph can't be interactive.
Upvotes: 4
Reputation: 401002
The Google Chart Tools / Interactive Charts (aka Visualization API) might be helpful, in your case ?
It provides flash-based interactive graphs (that you can't use), but it also provides Javascript-based interactive graphs (that could be OK for you, I suppose ?)
Here is an example / demo of a non flash-based chart : Visualization: Line Chart.
Quoting that page, it :
is rendered within the browser using SVG or VML
Take a look at the Google Visualization API Gallery to see what can be done ; maybe you'll find out it's OK for you ;-)
Upvotes: 1