I'm able to create Gantt Charts with the addColumn and addRows methods, but I would really like to pull the data from a spreadsheet instead. Here is the spreadsheet:
(I have many debugging alerts set up so just click through them)
There is nothing helpful in the javascript console to help me solve this. In fact, when I open the "Network" tab in the developer console, it looks like I'm pulling the data in correctly:
0:{v: "testid"}
1:{v: "Test ID"}
2:{v: "Date(2018,0,1)", f: "1/1/2018"}
3:{v: "Date(2018,1,1)", f: "2/1/2018"}
4:{v: 7, f: "7"}
5:{v: 0, f: "0"}
6:{v: "null"}
Still, the result is just a red error box.
There's one other thing that I feel is a clue but can't figure out. Note that there is a javascript alert immediately before and after chart.draw (lines 30-32 in the jsfiddle) that say "about to draw" and then "drawn". What's weird is that the error doesn't actually show up on the screen until I get the "drawn" alert.
Any help would be appreciated. Let me know if I can provide more information to help get this solved.