Click here to Skip to main content
15,901,505 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hellow Sir,

I am developing c sharp windows application,

I have to display graph of category vs category value using fusion chart.

and my number of categories are dynamic(from database).

please give me solution.

thanks...
Posted

http://forum.fusioncharts.com/[^]

Have you tried reading the documentation provided with this link, or posting in their forum?
 
Share this answer
 
Thanks you sir for u r hint.
but it is not working
 
Share this answer
 
go thru this link

http://www.codeproject.com/KB/web-image/FusionChartsHelperClass.aspx
............................................................................

protected void btnShow_Click(object sender, EventArgs e)
{
FusionPieChart pieChart = new FusionPieChart();
pieChart.showNames = true;
pieChart.showPercentageInLabel = true;
pieChart.showPercentageValues = false;
string chartHtml = pieChart.CreateSetElement(BuildData(), FusionPieChart.Pie3D,
divPieChart.ClientID, "name", "value",
"text", "id", "test.aspx?id=", true, 600, 400);
divPieChart.InnerHtml = chartHtml;

FusionLineChart lineChart = new FusionLineChart();
//chartHtml = lineChart.CreateSetElememtForTrendChart(BuildData(),
divLineChart.ClientID, "name", "value", 100, 100);
chartHtml = lineChart.CreateSetElement(BuildData(), FusionLineChart.Line2D,
divLineChart.ClientID, false, "", "name",
"value", "text", "id", "", true, 600, 400);
divLineChart.InnerHtml = chartHtml;
}
 
Share this answer
 
Comments
udusat13 19-Sep-11 2:03am    
Thanks ................

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900