Radio chart not working on IE

Hi guys,

My radio chart isn’t working on IE even with the excanvas.js files included. The radio chart works juste fine on any other browsers.

I attached the demo files.

Thank you for your time,
Ben
CompleteDemo.zip (57.6 KB)

Hi,

could you please explain the issue in detail? What exactly doesn’t work?

Hi Alexandra,

It draws a square with nothing inside. I attached a picture so you can view the result on IE.

Thanks !


Hello,

we have reproduced the problem in IE6 and IE7. It is caused by unexpected comma after the last property in an object - please remove comma after “step” property in yAxis config:

yAxis:{
lineShape:‘arc’,
end:5,
start:0,
step:1
},

instead of

yAxis:{
lineShape:‘arc’,
end:5,
start:0,
step:1,
},