Hello guys,

I'm new to using chart API's and would like to know if it is possible to 
display values in a control wrapper based on one column in the datatable 
and sort it by another column in the datatable. My month control displays 
all the months alphabetically, e.g. Apr, Aug, Dec, Feb,...

My goal is to display as Jan, Feb, Mar, Apr, ....

My data looks like this:
    data.addColumn('number', 'Year');
    data.addColumn('number', 'MonText');
    data.addColumn('number', 'MonNum');
    data.addColumn('number', 'Value');
    data.addRows([
        [1996,"Jan", 1, 13],
        [1996,"Jan", 1, 9],
        [1996,"Jan", 1, 11],
        [1996,"Mar", 3, 12],
        [1996,"Feb", 2, 13],
        [1996,"Feb", 2, 9],
        [1996,"Apr", 4, 11],
        [1996,"Apr", 4, 12],

-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-chart-api/-/x90cMGNsDBoJ.
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-chart-api?hl=en.

Reply via email to