Hi David, This appears to be a problem with the labeled legend feature. If you turn that off, I bet your chart will at least work again.
If the only thing that changed is your data, then it would be good to grab a copy of the data that causes this problem. I tried to reproduce the problem using your data and options here: http://jsfiddle.net/dlaliberte/zwfykqap/ but it works fine in this situation. Ah, I see the problem. The property 'shuffle' has been added to the Array prototype, and that causes confusion in the labeled legend code when iterating over the properties of an array. The addition of the 'shuffle' property appears to be happening in https://individual8.com/min/g=js perhaps as an update to that code. Modifying the prototype of Array or other classes in the JavaScript environment is generally considered a bad practice. Though it is possible for us to work around such problems (and we will probably do that), more problems similar to this are likely to arise. On Thu, Sep 24, 2015 at 4:54 AM, David Schmidt <[email protected]> wrote: > Since yesterday I have a problem with pie charts, I can't figure why it's > happening. > > I use several charts to visualize my Google Fit activity at > https://individual8.com/about/activity > Pie Charts are the only one not working. > > > <https://lh3.googleusercontent.com/-rTTuhpfXAO8/VgO5--9U6MI/AAAAAAAF7_U/CnGQRrc3ID0/s1600/Capture.PNG> > > -- > 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. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-visualization-api/6ae74a5e-064c-4823-97ce-47085857cdba%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/6ae74a5e-064c-4823-97ce-47085857cdba%40googlegroups.com?utm_medium=email&utm_source=footer> > . > 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. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOmy%2BiD4socqpS7QeiRz%2BdA5TV6yVLqZt4MpfbCEohF5A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
