How to generate charts from Sql server data using C#
-
We have to generate some graphs like Pic chart etc, based on data stored in sql server. We have to use C# only. 1. I am not sure what's the approach for this, I mean which control etc to be used 2. Is this requirement simple one or do we need to use some plug in? please share if u have any sample code in C#.
-
We have to generate some graphs like Pic chart etc, based on data stored in sql server. We have to use C# only. 1. I am not sure what's the approach for this, I mean which control etc to be used 2. Is this requirement simple one or do we need to use some plug in? please share if u have any sample code in C#.
Its Depends on your requirement that which chart control you want to use. If you are using
.NET Framework 3.5 SP1
then Microsoft having there own chart Control. you can use them. Or you can also have a look intoDundas Chart
,Fusion Chart
, which are Paid. :)Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
Its Depends on your requirement that which chart control you want to use. If you are using
.NET Framework 3.5 SP1
then Microsoft having there own chart Control. you can use them. Or you can also have a look intoDundas Chart
,Fusion Chart
, which are Paid. :)Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
We have to generate some graphs like Pic chart etc, based on data stored in sql server. We have to use C# only. 1. I am not sure what's the approach for this, I mean which control etc to be used 2. Is this requirement simple one or do we need to use some plug in? please share if u have any sample code in C#.
You might also consider Microsoft Reports(rdlc) to make charts. You just need to pass the dataset to the report and the report will generate a chart for you. Rdlc's are very light weight(XML) and easy enough to implement. :)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
For .NET 2.0, There is no such Chart Control (Microsoft Chart Control) Available. You can go for some paid service like Dundas Chart or may have look around some open source chart control.
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.