I have a column chart that's not displaying right in Chrome (it works
in FF).
Here's a screenshot:
http://i55.tinypic.com/2ag9gnn.png
And my code:
new google.visualization.ColumnChart(el).draw(data, {
title: "Percent correct over time",
width: el.getStyle('width').toInt(),
height: el.getStyle('height').toInt(),
isStacked: true,
legend: 'top',
colors: ['#01921B', '#b00'],
chartArea: {left: 30, top: 40, width: "85%", height: "65%"},
vAxis: {title: "Percent Correct", maxValue: 100},
hAxis: {title: "Time", textPosition: "none"},
axisTitlesPosition: 'none'
});
Any ideas?
Thanks