Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Apr 11, 2012 02:31 AM by nick5454
Member
154 Points
507 Posts
Apr 09, 2012 12:08 PM|LINK
Hi,
I'm looking for an advanced Chart component for asp.net
For example I want to draw this table (with a chart column)
Date send Receive
date1 212 424
date2 432 543
....
I want to draw the "send" with a red color and the "receive" with a blue color
Any help please ?
Contributor
2881 Points
517 Posts
Apr 09, 2012 12:16 PM|LINK
You could use "asp:Chart" server control.Its Inbuilt in Visual Studio.
Refer these links.
http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx
http://www.codeproject.com/Articles/235117/ASP-NET-4-0-Chart-Control
http://www.asp.net/web-pages/tutorials/data/7-displaying-data-in-a-chart
Apr 09, 2012 06:26 PM|LINK
The chart given by default in .NET 4.0 takes only one "x"value and one "y" value, so I can't draw 2 different columns of "y" for one "x"
587 Points
486 Posts
Apr 09, 2012 07:02 PM|LINK
salim20001 The chart given by default in .NET 4.0 takes only one "x"value and one "y" value, so I can't draw 2 different columns of "y" for one "x"
You are misunderstanding the x and y values.
You would have 2 columns in a column chart ( series )
Series1- X = date Y= Send
Series2 - x = Date Y = Receive
It takes a while to understand the charts. they have all sorts of features
Apr 09, 2012 08:48 PM|LINK
Good, so how can I enter the color for the series? (and also how to change the background of the chart ?)
Apr 09, 2012 10:44 PM|LINK
Thank you,
Can you help me draw a pie in 3D? (and make a legend) PLZ
Apr 11, 2012 02:31 AM|LINK
http://archive.msdn.microsoft.com/mschart
Here is the sample project. Download it and install it as a web app on your local IIS. It has sample code and all!
salim20001
Member
154 Points
507 Posts
Graphh dll
Apr 09, 2012 12:08 PM|LINK
Hi,
I'm looking for an advanced Chart component for asp.net
For example I want to draw this table (with a chart column)
Date send Receive
date1 212 424
date2 432 543
....
I want to draw the "send" with a red color and the "receive" with a blue color
Any help please ?
avinash_bhud...
Contributor
2881 Points
517 Posts
Re: Graphh dll
Apr 09, 2012 12:16 PM|LINK
You could use "asp:Chart" server control.Its Inbuilt in Visual Studio.
Refer these links.
http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx
http://www.codeproject.com/Articles/235117/ASP-NET-4-0-Chart-Control
http://www.asp.net/web-pages/tutorials/data/7-displaying-data-in-a-chart
salim20001
Member
154 Points
507 Posts
Re: Graphh dll
Apr 09, 2012 06:26 PM|LINK
The chart given by default in .NET 4.0 takes only one "x"value and one "y" value, so I can't draw 2 different columns of "y" for one "x"
nick5454
Member
587 Points
486 Posts
Re: Graphh dll
Apr 09, 2012 07:02 PM|LINK
You are misunderstanding the x and y values.
You would have 2 columns in a column chart ( series )
Series1- X = date Y= Send
Series2 - x = Date Y = Receive
It takes a while to understand the charts. they have all sorts of features
salim20001
Member
154 Points
507 Posts
Re: Graphh dll
Apr 09, 2012 08:48 PM|LINK
Good, so how can I enter the color for the series? (and also how to change the background of the chart ?)
salim20001
Member
154 Points
507 Posts
Re: Graphh dll
Apr 09, 2012 10:44 PM|LINK
Thank you,
Can you help me draw a pie in 3D? (and make a legend) PLZ
nick5454
Member
587 Points
486 Posts
Re: Graphh dll
Apr 11, 2012 02:31 AM|LINK
http://archive.msdn.microsoft.com/mschart
Here is the sample project. Download it and install it as a web app on your local IIS. It has sample code and all!