Use a number formatter on your data. https://developers.google.com/chart/interactive/docs/reference#numberformat
On Tuesday, June 21, 2016 at 4:30:14 PM UTC+2, roberto taormina wrote: > > I have this example > > <script type="text/javascript" src=" > https://www.gstatic.com/charts/loader.js"></script> > <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', 0.00], > ['3', 0.00], > ['4', 0.00], > ['5', 0.00], > ['6', 0.00], > ['7', 0.00], > ['8', 0.00], > ['9', 0.00], > ['10', 0.00], > ['11', 0.00], > ['12', 800.23], > ['13', 980.00], > ['14', 600.00], > ['15', 1299.00], > ['16', 777.00], > ['17', 0.00], > ['18', 0.00], > ['19', 0.00], > ['20', 0.00], > ['21', 0.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], > > ]); > > var options = { > title: 'Foglio cassa del mese di', > hAxis: { > title: '', > format: 'number', > viewWindow: { > min: [7, 30, 0], > max: [17, 30, 0] > } > }, > vAxis: { > title: '' > } > }; > > var chart = new google.visualization.ColumnChart( > document.getElementById('chart_div')); > > chart.draw(data, options); > } > </script> > <div id="chart_div"></div> > > I would like to see far The numelo Value Without comma ( , ) See picture > > > Io vorrei far visualizzare il valore del numelo senza virgola (,) Vedi > immagine > -- 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/624ada1d-8282-4270-ba7b-c3a4611ccf43%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
