I'm using Google Apps Script HTMLService:
function doGet(request)
{
var html = HtmlService.createTemplateFromFile('index').evaluate();
html.setTitle("CBN Producers' Dashboard");
html.setSandboxMode(HtmlService.SandboxMode.NATIVE);
return html;
}
When I copy and paste the first example from Google Charts Timeline Visualisation API to a normal HTML file and test it, it works perfectly. However, when I do exactly the same with a blank project with Google Apps Script, I get nothing, not even an error. Does Google Apps Script not support Timeline or something or am I doing something wrong?
Thanks in advance, guys!
Regards, Vishal