Currently, I am incorporating Google Charts into my website to present data visually. However, I have encountered an issue with the 'visualization' 1.1 and the 'packages' line:
google.load('visualization', '1.1', {packages: ['line']});
My attempt to place the legend column at the bottom position using the following line, which has worked for other types of Google Charts, is not proving successful:
var options = {
legend: { position: 'bottom'}
};
For this specific type of chart, the legend column ends up on the right side instead. You can see this in the image from my website here: chart example
Any insights or suggestions would be greatly appreciated! Thanks!