Hello i am trying to work on Fusion Charts. When i worked on fusion charts on Normal aspx pages i can generate Fusion Chart. But when i am trying this on Master pages i am not getting Chart.
here is the code which i am trying.
LitRegionVendorwise.Text = GetProductSalesChartHtml();
I have given reference to fusionCharts dll file.
here I have FusionCharts Folder in my application root folder. and all swf files i have in that.
i have tried changing the path in all ways
i tried in these ways...
return FusionCharts.RenderChart("FusionCharts/Column2D.swf", "", xmlData, "productSales", "600", "300", false, false);
return FusionCharts.RenderChart("<%= Page.ResolveUrl('~')%>FusionCharts/Column2D.swf", "", xmlData, "productSales", "600", "300", false, false);
return FusionCharts.RenderChart("../../FusionCharts/Column2D.swf", "", xmlData, "productSales", "600", "300", false, false);
i am getting just Text "Chart" on the literal control
seems that it is not rendering.
can somebody tell me where i am going wrong.
Thanks in advance.