Hello,
I need to create a ColumnChart and have a question about using number
in x-axis and have data normalization and scaling being done
automatically. I can use number in first column in Line Charts and the
chart does scaling for me. Now I need to do the same for Column Chart.
Unfortunately the same is not working for Column Chart as it shows x-
axis as another column if I try changing type to number.

line_data = new google.visualization.DataTable({
            cols: [
                {id: 'price', label: 'Price', type: 'number'},
                {id: 'bid', label: 'Bids', type: 'number'}
            ],
            rows: [
                {c:[ {v: 0.008}, {v: 8786.0} ]},
                {c:[ {v: 0.01}, {v: 8755.0} ]},
                {c:[ {v: 0.011}, {v: 8709.0} ]},
                {c:[ {v: 0.032}, {v: 8648.0} ]}
           ]
})

-- 
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.

Reply via email to