stanmakfusion Report post Posted May 5, 2008 I am using the below code to try to build my chart. string xmlString = gridRow.Cells[3].Text.ToString(); return FusionCharts.RenderChart("/FusionCharts/Bar2D.swf", "", xmlString, "chart1", "600", "300", false, false); When I do this, I get "No data to display". When I look at the source code, it looks like the < and > chars have been replaced and looks something like this /></dataset></chart> Is there a way around this? Share this post Link to post Share on other sites
FusionCharts Support Report post Posted May 6, 2008 Hi, Could you please try using Server.HtmlDecode(xmlString) ? Please also check whether proper chart XML is being passed. If its only <dataset> no chart is going to rendered. Share this post Link to post Share on other sites