I'm doing some testing with Google Charts service, and I'm trying to explode certain slices of my piechart. However, this isn't working as I'd hoped.
My data source is a range A1:B30, and when I try to explode a range within it, for example the first 4 slices, I'd have thought this would do the trick:
setOption('slices',['0',{offset: 0.75},'1',{offset: 0.75},'2',{offset: 0.75},
'3',{offset: 0.75},'4',{offset: 0.75}])
However, that doesn't seem to work - I end up with this:
It's weird - Has it got something to do with there being two elements (the A and B column values in the range) ?? That would explain if the pattern was it always skipped one slice, but at one point it skips two - strange! Any advice?
best wishes
Dave