<https://lh3.googleusercontent.com/-EKB6YPs_TLY/V1U6uQVkE9I/AAAAAAAAAEk/qeaMfSZrxPA2BO7IH0qWBGnAoBOdvtwhACLcB/s1600/22.jpg> Good morning, I do not speak very well English
I tried this code https://developers.google.com/chart/interactive/docs/gallery/columnchart#coloring-columns I would like to see the € value over the column (see image) I use this code ----- Buon giorno, io non parlo molto bene la lingua inglese Io ho provato questo codice https://developers.google.com/chart/interactive/docs/gallery/columnchart#coloring-columns Io vorrei fare visualizzare il valore € sopra la colonna (vedi immagine) Io utilizzo questo codice ----- <script type="text/javascript"> google.charts.load('current', {packages: ['corechart', 'bar']});google.charts.setOnLoadCallback(drawBasic);function drawBasic() {var data = google.visualization.arrayToDataTable([['Giorni', 'Euro'],['1', 0.00],['2', 278.00],['3', 0.00],['4', 0.00],['5', 0.00],['6', 0.00],['7', 0.00],['8', 0.00],['9', 0.00],['10', 239.00],['11', 0.00],['12', 0.00],['13', 0.00],['14', 0.00],['15', 0.00],['16', 0.00],['17', 0.00],['18', 0.00],['19', 200.22],['20', 650.00],['21', 399.00],['22', 0.00],['23', 0.00],['24', 0.00],['25', 0.00],['26', 0.00],['27', 0.00],['28', 0.00],['29', 0.00],['30', 0.00],['31', 0.00], ]); var options = { title: 'Foglio cassa mensile', hAxis: { title: 'Giorni', format: 'decimal', viewWindow: { min: [7, 30, 0], max: [17, 30, 0] } }, vAxis: { title: 'Foglio Cassa mensile' } }; var chart = new google.visualization.ColumnChart( document.getElementById('chart_div')); chart.draw(data, options); } </script><!-- end statistiche--> -- 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 https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/1c1d9f75-c43f-4566-8c60-b9cc85c379e2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
