There's no feature that does that automatically for you.
However, if you want to see all the values as annotations, you can use a
data view to construct the annotations automatically.
See full example in
http://savedbythegoog.appspot.com/?id=f9546368ddbd029740b7b503741d5917deb91b6e

  var view = new google.visualization.DataView(data);
  view.setColumns([0,
                   1, {calc: getSales, type: 'number', role: 'annotation'},
                   2, {calc: getExpenses, type: 'number', role: 'annotation'
}]);

  function getSales(dataTable, rowNum){
    return dataTable.getValue(rowNum, 1);
  }

  function getExpenses(dataTable, rowNum){
    return dataTable.getValue(rowNum, 2);
  }


On Mon, Mar 19, 2012 at 4:51 PM, Abc Now <[email protected]> wrote:

> Hello Pierre and EZChart: thanks a lot for your emails. Please, see
> attachment to see what I am trying to do in a visual way,
> looking forward to your answer, AC
>
>
> 2012/3/19 Pierre Pélardy <[email protected]>
>
>> Hi,
>>
>> I search the same thing.
>>
>> You can do it with a pie chart but i don't find the same option with
>> bar : pieSliceText ->
>> http://code.google.com/intl/fr-FR/apis/chart/interactive/docs/gallery/piechart.html
>>
>> That you want to do ?
>>
>> On 15 mar, 12:23, Abc Now <[email protected]> wrote:
>> > I am building a graph with three main lines. Those lines have
>> > intersection points. When you put mouse over those intersection points
>> > then you see content for that intersection. I want to show some of
>> > that content that belongs to graph on markers without user having to
>> > put mouse over the intersection point. So, when user goes to the page
>> > he needs to see that marker with the dynamic content for that bar
>> > line.
>> > I am trying to find a way to show content of those intersections for
>> > ONLY 1 of those bar main lines.. I have done it for the intersection
>> > point of the tree main lines but I cannot find a way to just show the
>> > data for one specific day on ONLY 1 BAR LINE..
>> > Please, your help is needed, best regards, AbcNow
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Visualization API" group.
>> To post to this group, send email to
>> [email protected].
>> To unsubscribe from this group, send email to
>> [email protected].
>> For more options, visit this group at
>> http://groups.google.com/group/google-visualization-api?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-visualization-api?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to