I'd like to make the contents of the cell that I am setting using
SetCell below, not just plain text (like 'Work') but a hyperlink. How
can I do this please?
function drawMap() {
var data = new google.visualization.DataTable();
data.addColumn('number', 'Lat');
data.addColumn('number', 'Lon');
data.addColumn('string', 'Name');
data.addRows(4);
data.setCell(0, 0, 37.4232);
data.setCell(0, 1, -122.0853);
data.setCell(0, 2, 'Work');
data.setCell(1, 0, 37.4289);
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---