I have created a sample application in asp.net
.aspx
<html>
<head>
<title>FusionCharts - Array Example using Single Series Column 3D Chart</title>
<script type="text/javascript" language="Javascript" src="../FusionCharts/FusionCharts.js"></script>
</head>
<body>
<form id="form1" runat="server">
<asp:Literal ID="Literal1" runat="server"></asp:Literal>
</form>
</body>
</html>
.cs
--------
protected void Page_Load(object sender, EventArgs e)
{
Literal1.Text = FusionCharts.RenderChart("../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", "600", "300", false, true);
}
But getting error like "w" is undefined
What is the problem
Pls help
Thanks and regards
Hari