How do I display the data labels at the end of the bars?  I want to display 
the value of 250 at the end of the bar for 2010, 300 at the end of the bar 
for 2011, etc

function drawChart_Bar02() {
                var data = google.visualization.arrayToDataTable([
                    ['Year', 'Data'],
                    ['2010', 250],

                    ['2011', 300],

                    ['2012', 275]
                ]);
 
                var options = {
                  chartArea: {left: 115, top: 20, height: '75%', width: '70%'},
                  legend: {position: 'none'},
                  hAxis: {title: 'Quality Index', 
                            titleTextStyle: {color:'#303030', fontSize: 10}, 
                            textStyle: {color:'#303030', fontSize: 10},
                            format: '#,##0',
                         minValue: 0},
                  vAxis: {textStyle: {color:'#303030', fontSize: 10},
                         minValue: 0}
                };
 
                var chart = new 
google.visualization.BarChart(document.getElementById('btmChart_right'));
                chart.draw(data, options);
            }


Thanks

-- 
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 google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to