Using FusionCharts within a Winform is very straightforward, but I am having an issue with using categories and datasets. I am building an XML string which is used to populate a bar chart, once I add the dataset tags my chart container says "No Data To Display." Has anyone had any luck with this? Here is a snippet of sample code:
ChartXML.Append("<categories>");
ChartXML.Append("<category name='Total Amount' />");
ChartXML.Append("</categories>");
ChartXML.Append("<dataset seriesName='Previous Year'>");
ChartXML.Append("<set value='65224' />");
ChartXML.Append("</dataset>");
If I remove the dataset tag all is well, but there are no categories - and I NEED categories.
Thanks in advance...