Mohmoud, You have conflicting format options. As the docs about the pattern option say: "When provided, all other options are ignored, except negativeColor." So your fractionDigits option is ignored. But you can get the equivalent of two decimal digits as part of your pattern by using: pattern: '###,###.00'.
dan On Wed, May 21, 2014 at 8:01 AM, Mahmoud Said <[email protected]>wrote: > Did u reach Any solution or workaround?. i'm stuck with the same problem > here, I need to display 2 digits after the the decimal point in the > percentage. apparently the use of fractionDigits does not help > > > > function drawChart(data) { > var data = google.visualization.arrayToDataTable([ > ['choice', 'sum'], > ['option1', data.total_val1], > ['option2', data.total_val2] > ]); > > var options = { > title: data.title, > is3D: true, > colors:['#CB5758','#4F8DD6'], > width:600, > height:400, > fontSize: 18, > chartArea: {width: '80%'} > }; > > var formatter = new > google.visualization.NumberFormat({pattern:'###,###', fractionDigits: 2} ); > formatter.format(data, 1); > > var chart = new > google.visualization.PieChart(document.getElementById('chart_div')); > chart.draw(data, options); > } > > > > > On Thursday, December 13, 2012 8:41:12 PM UTC+2, Kwasi wrote: >> >> Is it possible to format the percentage in the pie chart to 2 decimal >> places instead of one? >> > -- > 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 > http://groups.google.com/group/google-visualization-api. > For more options, visit https://groups.google.com/d/optout. > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> - 978-394-1058 [email protected] <[email protected]> 5CC, Cambridge MA [email protected] <[email protected]> 9 Juniper Ridge Road, Acton MA -- 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 http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/d/optout.
