Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

show percentages google charts on tooltip

I want to show a ratio with google charts, using percentages. I know how to change the vAxis to percentages:

vAxis: {format:'#%'},

but the problem is my data is not shown as percentages on the tooltips, but in decimal values (0.85 instead of the expected 85%)

enter image description here

My code is below:

  google.load("visualization", "1", {packages:["corechart"]});
        google.setOnLoadCallback(function() {})
        function drawChart(data) {
          var data = google.visualization.arrayToDataTable(data);

          var options = {
            title: "Pourcentage de production et productivité de l'entreprise",
            chartArea: {top:39},
            vAxis: {format:'#%'},
            pointSize:2
          }

          var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
          chart.draw(data, options);
        }

drawChart([['Year', '% de production', 'Productivité'],[ '06/03/2013', 0.85 , 0.58 ],[ '07/03/2013', 0.85 , 0.58 ],[ '23/03/2013', 0.85 , 0.58 ],[ '25/03/2013', 1 , 1.5 ],[ '26/03/2013', 0.72 , 0.63 ],[ '04/04/2013', 1 , 1.57 ]])
like image 543
edi9999 Avatar asked Apr 05 '13 09:04

edi9999


1 Answers

You can use formatters.

Here is an example (stick this in to your code before drawing the chart):

  var formatter = new google.visualization.NumberFormat({pattern:'#,###%'});
  formatter.format(data, 1);
  formatter.format(data, 2);

The formats you can use are a subset of the ICU DecimalFormat if you want to slightly change the format from what I give above.

like image 91
jmac Avatar answered Sep 30 '22 18:09

jmac