2
votes

I need to show data points on the line chart, i.e. which appear on mouse over at a point, i need them all displayed by default i.e. not by mouse over. Any clues?

1

1 Answers

16
votes

You can use

data.addColumn({type: 'string', role: 'annotation'});

and add one more value at the time of adding record with data.addRows of type string.

That will be shown just above the point on chart.

Thanks!