"row Given With Size Different Than 3" Google Charts
I'm using Google Charts inside of a system called Klipfolio. Been tinkering with it for days. Curious if anyone else has tried the same. This issues isn't particular to Kipfolio bu
Solution 1:
Looks like my issue was adding the brackets on data.addRows function. So instead of:
data.addRows([datadone]);
which didn't generate, I replaced it with:
data.addRows(datadone);
Thanks Henrik for pointing me to look at the data source. Once I verified the formation, I was able to identify the issue and fix it. Chart looks great now!
Post a Comment for ""row Given With Size Different Than 3" Google Charts"