Justin Ethier
Justin Ethier

Reputation: 134167

Dynamic data in Highcharts

Has anyone used the Highcharts Javascript charting library? I have a few questions about it:

Upvotes: 3

Views: 15231

Answers (4)

Slav
Slav

Reputation: 596

Yes - it supports things you mentioned. Here's the sample code http://jsfiddle.net/sdorzak/HsWF2/

also the documentation looks 'thin' but it's pretty good. I'm starting to discover that you can really do a lot with these charts.

Upvotes: 2

Sanjay
Sanjay

Reputation: 156

The Highcharts forum is pretty active and you should be able to find the answers to most of your questions there.

I've used Highcharts and love the interface and the charts that it produces.

Yes, Highcharts allows you to dynamically modify your charts and you shouldn't have to unload the chart in order to add new series data. Here's an example to add new data points to an existing series, and check out Chart.addSeries() if you want to add a whole new series.

Upvotes: 7

Upperstage
Upperstage

Reputation: 3757

Have you looked at Flot.js? It relies on JQuery. Very nice, very easy, lightweight, and open source.

Upvotes: 0

Fabien Ménager
Fabien Ménager

Reputation: 140195

A new call to

new Highcharts.Chart(...)

should do the trick. The docs are quite complete, but maybe too young to be helpful enough. And the support may be better with the commercial license. Did you check other libs like Flotr ?

Upvotes: 3

Related Questions