Reputation: 11
I want to create a pie chart in my asp.net web site.The chart should get the values from database and generate a pie chart as well. Please help me ,how do i get this.
Thanks in advance.
Upvotes: 1
Views: 1985
Reputation: 1801
I recommend Fusion Charts. Ive implemented it in my project. Its easier to implement and is also very professional.
There is also a helper for Fusion Charts with Asp.Net (webforms and mvc)
Here a sample for a Pie Chart:
Project site: http://liberofusioncharts.codeplex.com/
Upvotes: 0
Reputation: 46018
There are plenty of charting components you can use in ASP.NET, including free ones.
For server-side rendering I can recommend ASP.NET Charting from Microsoft (formerly Dundas Charts) For client-side rendering you can use HighCharts or AmCharts (requires flash).
Upvotes: 0
Reputation: 1166
I would say have a look at the Asp.Net Charting control. New ASP.NET Charting Control - ScottGu . The samples found in that post are quite detailed and cover numerous chart types.
Upvotes: 2