Questions tagged [asp.net-charts]

Chart controls enable you to create ASP.NET pages or Windows Forms applications with simple, intuitive, and visually compelling charts for complex statistical or financial analysis.

The ASP.NET Chart server control enables you to create ASP.NET pages that include charts for complex statistical or financial analysis. The Chart control supports the following features:

  • Data series, chart areas, axes, legends, labels, and titles.
  • Data binding.
  • Data manipulation, such as copying, splitting, merging, alignment, grouping, sorting, searching, and filtering.
  • Statistical formulas and financial formulas.
  • Advanced chart appearance, such as 3-D, anti-aliasing, lighting, and perspective.
  • Events and customizations.
  • Interactivity and Ajax.

Code Samples

Community Forum

136 questions
3
votes
1 answer

.Net Charting Controls - Change Label Format/Value

I am attempting to have a Pie chart using the ASP.Net Charting controls. Everything's fine. The X value is the name of a specific item with the Y value the amount. The Legend is displaying the X value, the size of the slices of the pie are…
Damien
  • 13,927
  • 14
  • 55
  • 88
3
votes
1 answer

adjusting the font axes style and size in asp.net chart?

Does anyone know the properties that I need to change to decrease the font size of the axes numbers and change the font style? Also need to know how to add x and y labels.
locoboy
  • 38,002
  • 70
  • 184
  • 260
3
votes
2 answers

No display of generated ASP chart on aspx page in my web application

For my web application created an aspx page which should display the ASP.NET Charts. Able to generate the charts but not displaying on the page. I can see the generated charts in my 'Temp charts' folder. I am using ASP.Net 4 and .NET Framework 4…
EHVR
  • 33
  • 2
  • 7
3
votes
3 answers

Microsoft Chart Control - Big Red X (bad) whenever I use financial formulas

I discovered Microsoft's .Net charting controls from another post here, and so far I love them. For anyone needing it, here is the link: http://code.msdn.microsoft.com/mschart I do everything during runtime, such as creating series and slapping them…
Bill Sambrone
  • 4,334
  • 4
  • 48
  • 70
3
votes
1 answer

Determine the colours used by the ASP.NET Chart control

I'd like to find out which colours are used for a particular pallette in the ASP.NET Chart control. I already know there is an enum on the Chart class to set the palette, e.g. myChart.Palette = ChartColorPalette.Berry; But I'd like to know which…
Oundless
  • 5,425
  • 4
  • 31
  • 33
3
votes
1 answer

MSCharts Last Axis Label Hiding

I'm using MSCharts and am using dates for the axes and couldn't help but notice that the axis label is hidden for the last grid line. The image below shows this. The code that I am using for this is: Public Function buildXAxis(ByVal chartArea As…
Dan Drews
  • 1,966
  • 17
  • 38
3
votes
1 answer

ASP.Net Charts LabelURL

I've got some graphics working with the MS Asp.Net Chart controls, I noticed the labels have a label URL property, If I put a URL in there then it makes that label a link. My question is, is it possible to have the label URL be dynamic for each…
Gavin
  • 17,053
  • 19
  • 64
  • 110
2
votes
1 answer

ASP.NET Chart Controls, is it possible to use a gradient on a pie chart?

I'm prototyping a chart using ASP.NET Chart Controls. I have the following code to generate my chart. I'm trying to get as close to the client's brand guidelines as possible. The brand guidelines are using gradients in the pie chart segments. Is…
Rob Stevenson-Leggett
  • 35,279
  • 21
  • 87
  • 141
2
votes
3 answers

How to display values in ASP.NET chart control

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?
c11ada
  • 4,302
  • 15
  • 48
  • 62
2
votes
1 answer

ASP.NET Charting Value Labels

I'm using the ASP.NET Charting Toolkit (http://code.msdn.microsoft.com/mschart) and am wondering if there is a way to turn the labeling of the stacked chart to on. As a default, when I plot my data using the stacked chart, the values for each of the…
locoboy
  • 38,002
  • 70
  • 184
  • 260
2
votes
1 answer

How to set chart title above y-axis?

I have been experimenting with charts and so far I got this experimental code: static void Main(string[] args) { Random rnd = new Random(); Chart thisChart = new Chart(); thisChart.Height = 400; …
ThunD3eR
  • 3,216
  • 5
  • 50
  • 94
2
votes
1 answer

How To Customize ASP.NET Chart Databound To SqlDataSource

I have an ASP Chart like this: I am not sure how I can make the labels for the values to appear vertical instead of being horizontal. I am not sure if this can be achieved by CSS as the resultant output is an image. All I have with me is the code…
2
votes
2 answers

Create XY Scatter in ASP.NET

I have two arrays of data that I would like to display in an XY scatter. I've downloaded the ASP.NET libraries and am wondering how to display the data. This is as far as I've gotten on the front end and was wondering if anyone has suggestions on…
locoboy
  • 38,002
  • 70
  • 184
  • 260
2
votes
2 answers

ASP.NET Chart Control - 3D Stacked Step pie

Does anybody know, how to make chart like this? I have not found any way how to stack 3D pie charts. Stacking seems to me available only with Stacked Bar, 100% Stacked Bar, Stacked Column, and 100% Stacked Column. This is example from ASP.NET…
Crank
  • 461
  • 2
  • 8
  • 15
2
votes
1 answer

How to make asp.net chart control responsive using bootstrap

I am using bootstrap in asp.net c#. Every thing is working fine (responsive) except the asp.net chart control. Can any one please suggest how can I make it block like btn-block. Please check the code and image. Thanks
Dr. Mian
  • 3,334
  • 10
  • 45
  • 69
1
2
3
9 10