Hi all, I on the other hand have an opposite requirement - not to show any decimals as this clutters the graph. This should be configurable, I can't see how this can be that big of a deal to implement so it has to wait for over three years... The more I use chart libraries, the more I think it would be better just to start drawing SVGs manually...
On Tuesday, April 19, 2016 at 7:31:52 PM UTC+1, Shabir Ahmed wrote: > > do we have any update on this issue, did any find a way to present more > digit with percentage? > > On Wednesday, May 21, 2014 at 6:41:56 AM UTC-7, Daniel LaLiberte wrote: >> >> Ah, I should have noticed that you mentioned the percentage value. There >> is no way at this time to specify the format of the percentage value, >> though I can see it might be useful in some cases. We'll consider it for a >> feature enhancement. >> >> >> On Wed, May 21, 2014 at 8:44 AM, Mahmoud Said <[email protected]> >> wrote: >> >>> Thank you Daniel, you are right, i tried it. but i realized that both >>> affect the format of the displayed value, what I need it the "percentage" >>> >>> for examples >>> >>> the values are 7777 and 3333 >>> >>> The percentage should be 77.77 and 33.33 , however, the pie chard >>> displays it as 77.8 and 33.2 >>> I need to display more fraction digits in the "percentage" part >>> >>> >>> On Wed, May 21, 2014 at 2:32 PM, 'Daniel LaLiberte' via Google >>> Visualization API <[email protected]> wrote: >>> >>>> 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] 5CC, Cambridge MA >>>> [email protected] 9 Juniper Ridge Road, Acton MA >>>> >>>> -- >>>> You received this message because you are subscribed to a topic in the >>>> Google Groups "Google Visualization API" group. >>>> To unsubscribe from this topic, visit >>>> https://groups.google.com/d/topic/google-visualization-api/vCNW1Fdva5o/unsubscribe >>>> . >>>> To unsubscribe from this group and all its topics, 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. >>>> >>> >>> >>> >>> -- >>> Mahmoud Said >>> Software Engineer - eSpace >>> http://splinter.me/modsaid >>> blog.modsaid.com >>> >>> >>> -- >>> 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] 5CC, Cambridge MA >> [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 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/0e7e75b8-7ee7-45d2-aa21-3cbf17d6e9ba%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
