James
James

Reputation: 11

Dynamic pie chart creation in .net

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

Answers (3)

RobertoBr
RobertoBr

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:

http://liberofusioncharts.codeplex.com/wikipage?title=Single%20Series%20Chart,%20adding%20data%20by%20DataSource&referringTitle=Home

Project site: http://liberofusioncharts.codeplex.com/

Upvotes: 0

Jakub Konecki
Jakub Konecki

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

Mike B
Mike B

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

Related Questions