In the chart editor there is an option to "Aggregate Column A".
How can I set this in a script using setOption?
Thanks
In the chart editor there is an option to "Aggregate Column A".
How can I set this in a script using setOption?
Thanks
After reverse engineering the code created from the graph using the method described here https://stackoverflow.com/a/13652972
I found that the option to achieve the same as "Aggregate column a" is
.setOption('applyAggregateData',0)
It makes zero sense with the 0 and such but considering how badly some of the Gapps Script stuff is, im not surprised.