No graph display in IE7

Posted by user515786 
No graph display in IE7
January 05, 2011 08:37AM
hi guys,
i have tried page with 3 pie charts and a line graph . everything works fine with ff and chrome . but nothing displayed in IE 7.0
i tried removing jquery and css from my page . then also no change..
Re: No graph display in IE7
January 05, 2011 08:42AM
can any one solve this prob?
Re: No graph display in IE7
February 02, 2011 03:56PM
Still the problem persists, can anyone help.. IE7 is not showing graphs
Re: No graph display in IE7
February 03, 2011 07:05PM
Hi,
Can you please provide some code so that we can reproduce the bug?

Thanks.

Sabin

--------------------
JS Charts - Created by Smartketer LLC
Re: No graph display in IE7
February 04, 2011 09:17AM
Hi sabin here is my small example code which runs fine in chrome and ff not in ie7

<html>
<head>
<title>JSChart</title>
<script type="text/javascript" src="jscharts.js"></script>
</head>
<body>
<div id="graph">Loading graph...</div>
<script type="text/javascript">
var myData = new Array(['football',100],['cricket',80],['baseball',90]);
var colors = ['#C40000', '#750303', '#F9ECA2'];
var myChart = new JSChart('graph', 'pie');
myChart.setDataArray(myData);
myChart.colorizePie(colors);
myChart.setTitle('simple test');
myChart.setTitleColor('#8E8E8E');
myChart.setTitleFontSize(11);
myChart.setTextPaddingTop(30);
myChart.setSize(616, 321);
myChart.setPiePosition(308, 170);
myChart.setPieRadius(85);
myChart.setPieUnitsColor('#555');
myChart.draw();
</script>
</body>
</html>
Re: No graph display in IE7
February 04, 2011 12:35PM
Hmm, it works for us. Do you have it online? This way we'll make sure we are testing the same scripts/html.

Sabin

--------------------
JS Charts - Created by Smartketer LLC
Sorry, you do not have permission to post/reply in this forum.