You can use an "annotation" role column to annotate data points. The
annotations take any string value, so you can use your data values as
strings for the annotations if you want. Here's an example:
var data = new google.visualization.DataTable();
data.addColumn('number', 'X');
data.addColumn('number', 'Y');
data.addColumn({type: 'string', role: 'annotation'});
data.addRows([
[0, 5, '5'],
[1, 3, '3'],
[2, 4, '4'],
[3, 7, '7'],
[4, 2, '2']
]);
see working example here: http://jsfiddle.net/asgallant/jH7q7/
On Friday, December 20, 2013 10:01:17 PM UTC-5, Antho wrote:
>
> Hello,
>
> I would like to know if it was possible to continuously display the
> values on "Area Chart" (
> https://google-developers.appspot.com/chart/interactive/docs/gallery/areachart),
>
> without having to do a mouse rollover ?
>
> Sorry for my bad english, happy holidays to all!
>
> Regards
> Antho
>
--
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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.