Hi All, I have this page with the following table (just a sample), when I
click on the link I stay on the same page. When i say open in new window or
tab I am redirected to the actual link. Could anyone shed some light on
this? Thanks in advance
google.charts.load('current', {packages:["orgchart"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Name');
data.addColumn('string', '');
// For each orgchart box, provide the node, account.
data.addRows([
//row 0
[{v:'0', f:'<a href="https://www.google.com">google</a>'},'0'],
]);
// Create the chart.
var chart = new
google.visualization.OrgChart(document.getElementById('chart_div'));
// Draw the chart, setting the allowHtml option to true for the
tooltips.
chart.draw(data, {allowHtml:true});
}
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-visualization-api/9c29bfe3-a9fb-41f6-9927-187739589ff0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.