I'm looking to create a single line chart that consists of the following:
1 line per server
each server will have a series of dates with hit counts.
For example:
svr1 12 15 13 20
svr2 23 27 28 40
...
What I want is a chart that shows hits on Y, dates on X and each server with
it's own plot line.
I can do this by generating the javascript, but am now looking to move the
"defining a remote data source" method.
What I seem to be missing is how to define the structure
that gviz_api.DataTable needs to generate the table. Normally in other areas
I'd use something like:
{"svr1":[12, 15, 13, 20,] , "svr2":[23, 27, 28, 40,] }
How would I translate that into something the gviz_api.DataTable will
accept?
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.