Hello,
I need to add a string to a table data which URL link to another page.
How do I do that ?
Example
var data = new google.visualization.DataTable();
data.addColumn('string', 'City');
data.addColumn('number', 'SiteCount');
data.addRows(2);
data.setCell(0,0,'city1');
data.setCell(0,1,10);
data.setCell(1,0,'city1');
data.setCell(1,1,20);
I would require the table visualization to display values for City
column to have hyperlinks.
Where and how do I add this ?
Thanks,
Prasad
--
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.