Reputation: 389
iam using google charts for displaying statistics, i use a term called visits to show statistics, the area text shows the name, i want to remove the area text, please see the image below
How to remove it.
Upvotes: 1
Views: 103
Reputation: 11
While you are creating the data array you can decide whether show it or not.
var data = google.visualization.arrayToDataTable([
['Minutes', ''], ***//if you left the second item '' empty then it will disappear.***
[ '5' , 12 ],
[ '10' , 34 ],
[ '15' , 56 ]
]);
Upvotes: 1