So I’m trying to get the stacked column chart to work in Chrome and noticed something strange. If you take the same code at:
SAMPLE HERE
and replace the sample data with:
{ Day: '2015/05', Running: 30, Swimming: 0, Cycling: 25 },
{ Day: '2015/06', Running: 30, Swimming: 0, Cycling: 30 },
{ Day: '2015/07', Running: 60, Swimming: 45, Cycling: 0 }
it does not render in Chrome, yet it renders fine in Firefox and Safari.
It has something to do with the Day labels. If I change them to this it renders fine.
{ Day: '2015/May', Running: 30, Swimming: 0, Cycling: 25 },
{ Day: '2015/June', Running: 30, Swimming: 0, Cycling: 30 },
{ Day: '2015/July', Running: 60, Swimming: 45, Cycling: 0 }