I did exactly the same you suggested . If i am not wrong this returns me a
data table. But nothing is displayed in div.
Please let me know if i am missing something.
*var* grouped_data = google.visualization.data.group(data, [{
column: 0,
type:
'number',
modifier:
*function* () {
*var* dataToGroup="AAA";
*return* dataToGroup;
}
}], [{
column: 1,
type: 'number',
aggregation: google.visualization.data.sum
}]);
*var* view = *new* google.visualization.DataView(grouped_data);\
view.setColumns([0]);
*var* sumChart = *new* google.visualization.Table(document.getElementById(
'summedData'));
Should not this be displayed in 'summedData' div as table with one column
and one row.
Thanks :)
On Wednesday, November 14, 2012 10:25:05 PM UTC+5:30, Jonathon McKitrick
wrote:
> I have JSON data that will contain a hyperlink, complete as html markup.
> I need to display this link as-is, and I think the Table is scrubbing the
> cell content before display. Is there a way to suppress this action, or do
> I need to break down the tag on the server side, then use a
> PatternFormatter to rebuild it before passing it to Table for display?
>
>
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-visualization-api/-/EjnTvYr9CTAJ.
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.