I have simple Google Column Chart with one series of data. And i need to show captions above each bar, because tooltip not enough. But there are no standart options to do it. You seen this?
google.load('visualization', '1', {packages: ['corechart']});
$(document).ready(function() {
var data = new google.visualization.DataTable()
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);
new google.visualization.ColumnChart(document.getElementById('visualization')).
draw(data, {width: 500, height: 440, legend: 'none',
enableInteractivity: false});
});
also you can play with this code at jsfiddle