Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We need to generate similar to

http://zopyx.com/tmp/chart.png

Here are the requirements:

  • 24*365 data points for the line graph in the upper part of the chart (one value per hour/day for year)
  • 12 data points for each block below (one per month)

So each vertical block (one per month) is associated with a set of 24*30 (or 31) datapoints.

I tried to implement the chart using Highcharts but it seems to have serious issue with large data sets (Firefox show an alert about a long running script).

Are there any alternatives to Highcharts that can deal with this usecase? Interactivity is a must (users should be able to zoom-in/out )

share|improve this question

closed as not constructive by Will Jan 12 '12 at 16:00

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 2 down vote accepted

I've always considered flot to be pretty fast with large datasets. According to my informal testing with a dataset of 8760 points, chrome (v15) will render it in about 5 seconds, firefox (v8) in about 2 seconds and ie9 is telling me about a 1/2 second (IE < 9 is going to be a no go on speed due to the lack of builtin canvas support).

My one concern for you though, is that >8000 points is crossing the pixel limit of rendering. Your plot will have to be around 10000 pixels wide to discern any sort of shape.

share|improve this answer

have you tried google charts plugin? here is the website for a demo : http://www.maxb.net/scripts/jgcharts/include/demo/#1

the API is also easy to use : http://code.google.com/apis/chart/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.