Hi All,
I am trying to display a line of text with a particular member in a the DataTable that is used to draw a visualization.
For Example:
I want to display a string at the bottom of the chart that says:
In 2008 Germany's Coffee Consumption was 19830493
This is how far I got with the extra code needed to do this, but I am having difficulty passing this data through the DOM.
........
var textdata = 'In 2008 Germany's Coffee Consumption was' data.[5,5];
document.getElementById('txt') = textdata;
........
<body style="font-family: Arial;border: 0 none;">
<div id="visualization" style="width: 600px; height: 400px;"></div>
<div id="txt"> </div>
</body>
Any help in this issue is very much appreciated.
Thank you,