I'm using a dataset as my data source to create a chart in asp.net, iv managed to display a column chart. Im now stuck on how I can display the values of each column on the chart.
Can some one please advice on how I may do this?
|
I'm using a dataset as my data source to create a chart in asp.net, iv managed to display a column chart. Im now stuck on how I can display the values of each column on the chart. Can some one please advice on how I may do this?
| ||||
|
feedback
|
|
I am assuming you are using ASP.NET chart controls which come as standard with .net 4, the very basic chart you can get is by below code
Now, if you want to access this programmatically, you might want to download the sample project given at http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx and go through the sample code.The project is quite extensive and describes in details about everything you need to know about charts. If you are stuck at a specific logic or piece of code, could you post that so we can advise further Thanks. | ||||
|
feedback
|
|
Strictly speaking.. From code behind:(my series is called overall)
This will show the values in percent To show a little more consider this sample.
from this barred data, i'm creating a lot of graphs, to keep it simple, i"ll just show 2
(sorry, i'm using 3d pie charts but anything goes) a) my aspx page..
I define 2 labels and tell to wich chartarea they should be 'docked'. I do just one legend as the rest will done from codebehind. Finally, define the chartareas themselves. In codebehind, i'm calling my sub to create the carts and pass a reference to the Table as shown above so i can process that date i've calculated to that time.
so far the preparation work is done. Now we're going to put the Y values in.
I'm reading basically all the odd Columns for the IN and the even columns for the out values. the Last letter specifies wether it's a Laptop (L) or a Desktop (D) value. Then sum up these read values as they contain the figures i want to show as a percentage of in warranty/out warranty. (Please note that i'm only showing a portion of the page, the intermediate arrays are being used elsewhere)
For one of the charts, i'm hinding the legend as it's twice the same, i'll put the legend in the middel of the two charts later.
and here i add my legend.
you need to play a bit with the values to position it correctly on your chartarea of course If you want to see the values instead of a percentage, change your label for instance to.
hope this helps K | |||
|
feedback
|