I am using Google line chart for developing the graph. I need to show
custom tooltip in which i need to render html code. But the custom tooltip
only work on single line in graph, but hovering on another lines it show
default tool tip provided by google chart. I wanted to show html custom
tool tip on both lines.
Here is my code:
var data = new google.visualization.DataTable();
data.addColumn('number', 'Y');
data.addColumn('number', 'D0 Response');
data.addColumn('number', 'D1 Response');
data.addColumn('number', '');
data.addColumn({type: 'string', role: 'tooltip', p: {'html': true}});
I also try this:
tooltip: {
isHtml: true,
},
Nothing works.
--
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 view this discussion on the web visit
https://groups.google.com/d/msgid/google-visualization-api/4f1546ed-4cbe-46f4-a324-0095a7c81734n%40googlegroups.com.