views:

196

answers:

3

Background to Question:

Software for analysing blood glucose readings for diabetics, typically have something called a "daily modal" chart.

This chart type is a line chart showing times of day on the X-axis, blood glucose readings on the Y-axis, and it displays this for a specified date range. So for example, I can see a chart of my daughter's readings over, say, the last week - with each day's readings superimposed on the single chart (this is the key -- superimposing each day's blood glucose readings on the same time-of-day based chart). It's the best way to see trends by time of day. If there is, in addition, a trend line showing the averages by time of day over the given time period, even better.

The Question:

Does anyone know of a JavaScript charting library that would allow me to build such a chart? I'm wondering if Flot does, or the Google visualization API for example?

Thanks in advance

+1  A: 

Google chart api does this. You can access it very easily with JS.

http://code.google.com/apis/chart/docs/gallery/line_charts.html

You'll have to do all the math, though.

Joshua Smith
+1  A: 

Another capable javascript charting library: http://g.raphaeljs.com/

The MYYN
+1  A: 

take a look at a loooot of such libraries at once, from helicopter point of view, and choose which one (or few) can draw what you need:

http://www.insideria.com/2009/12/28-rich-data-visualization-too.html

I hope it brings you enough opportunities to get job done ;)

Maxym