I don't *think* there is a way to do that explicitly, but you might be able
to cheat around the limitations of the data view, by constructing data
tables from your views:
// view is a populated data view
var newData = view.toDataTable();
newData.setFormattedValue(<row>, <column>, <format>);
var chart = new google.visualization.<chart
type>(document.getElementById('chart_div'));
chart.draw(newData, <options>);
--
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.