Hello, my title is not coming up on my chart, and I'm not sure why. Code is:
// Set chart options
var options = {'title': 'Product Strategy',
width: 1250, height: 1000,
sankey: { node: { width: 12 } }
};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Sankey(document.getElementById('sankey_multiple'));
chart.draw(data, options);
I've tried removing the (' ') around title, as well as replacing them with (" ").
Saving the code out from notepad into a .html file.
Any tips or something I've missed? New to HTML. Thanks.