HighCharts 3.0.0 Animation -
i upgraded highcharts version 3.0.0 today , having issues animation. web application working on built ie 9. getting no animation in ie when running chrome animation still renders application. can view highcharts demos in ie 9 on official site full animation.
chartvar = document.createelement('div'); chartvar.setattribute('id', 'container'); chartvar.style.width = '400px'; chartvar.style.height = '200px'; document.getelementbyid('quad0').appendchild(chartvar); $(function () { $('#container').highcharts({ chart: { }, xaxis: { categories: ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'] }, series: [{ data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }] }); });
Comments
Post a Comment