Thanks for pointing that out, I've updated the fiddle with the fix. On Thursday, November 28, 2013 4:54:26 PM UTC-5, subzero wrote: > > Hi again! > > I found a fix for this problem with the help of another post in this > google group from Sergey > (Link<https://groups.google.com/forum/?hl=de#!topic/google-visualization-api/b3nkO-lLVg8>). > > I'll quote his description of how to fix this error here: > > [...] we changed the way the selection object behaves to be more >> consistent with our documentation. In the new version, instead of omitting >> the 'row' property when not relevant, we will now return null there. So >> a column selection is now represented like {column: 2, row: null}, >> instead of {column: 2} or{column: 2, row: undefined}. What this means >> for your code is that your typeof sel[0].row === 'undefined' check will >> no longer work, because typeof null is'object', not 'undefined'. You can >> fix this in your code by checking that sel[0].row == null. The side >> benefit for doing it this way is that this will work for older versions of >> Google Charts as well, since undefined == null. [...] > > > >
-- 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/groups/opt_out.
