Questions tagged [mschart]

This tag refers to the System.Windows.Forms.DataVisualization.Charting and System.Web.ui.datavisualization.charting Namespaces, used to create controls for charting using the .NET framework.

This tag refers to the System.Windows.Forms.DataVisualization.Charting and System.Web.UI.DataVisualization.Charting Namespaces, used to create controls for charting using the .NET framework.

These namespaces have been available by default since version .NET Framework 4.0, and and have been available as an add-on available at no cost from Microsoft since .NET Framework 3.5 SP1. The download from Microsoft is called MSChart.exe. A very useful set of Sample code and demos is also available from microsoft.

1192 questions
4
votes
1 answer

Synchronized Panning Two Chart Areas

I have one chart with two areas. When I zoom or slide on scroll bar one chart area, other chart area also zoom and sliding. I have been trying to add panning to my project. When I was searching I found MSChart Extension and I loved…
enez2692
  • 77
  • 5
4
votes
1 answer

Double label while adding a datapoint in mschart

I'm writing a code in C#.Net WinForms to add label on clicking some datapoints on chart. Before clicking the chart, the graph looks like this. Now I click a datapoint between 330-340. The chart shows selected datapoint with double label (338.61).…
user2587
  • 149
  • 10
4
votes
3 answers

Adding a scroll bar to MS Chart control C#

please understand that I know there are other threads concerning this issue, but my needs are different. Basically before I seen people saying to implement a scroll bar with MSChart they use the .Size = ... or .View = ... But, this make a scroll…
4
votes
2 answers

How do I update MS Chart for 3.5 to MS Chart 4?

Does anyone now how to update reference from MS Chart 3.5 to MS Chart 4. I have recompile ASP.NET project with Visual Studio 2010, the reference already pointing to MS Chart 4.0 dll, but when I open the web app, it still says "The base class…
James
  • 89
  • 4
  • 16
4
votes
1 answer

How to add more Y-axes to MSChart with different scale at left or right side

I want to add 3 Y-axes for the chart with different scales. I want to get one x axis and different y axis. I did it like below code but I want to show one y axis like in the 2nd image that I attached.. My C# code so far: private void…
SNP
  • 51
  • 1
  • 10
4
votes
2 answers

How to change reference to local ( from GAC to bin )

I've got MS Chart control and with a references to GAC. I found them ( C:\Program Files\Microsoft Chart Controls\Assemblies ) but how to change GAC to local copy (bin) for comparability with other servers without installed MS Chart control for VS…
cnd
  • 32,616
  • 62
  • 183
  • 313
4
votes
1 answer

Adding x axis string value in a chart instead of number

I'm trying to design a chart where x represents the exception message and y represents how many time it occurred. I'm not able to show x value (exception message) under each bar, I also tried labelling x and having range for each label but the bars…
J-P
  • 403
  • 1
  • 6
  • 21
4
votes
1 answer

Graph with stacked columns and two Y axis

I am trying to create a Chart with multiple columns, including some which are stacked and also have 2 Y axis. When all columns are using the primary y axis they appear correctly side-by-side. but when one (or more but not all) use the second y axis…
bmdixon
  • 352
  • 8
  • 17
4
votes
2 answers

How to set series Z-Order in Chart

I have a Chart Control (System.Windows.Form.DataVisualisation.Charting, so WinForms) with multiple series, some are assigned to the primary, and some to the secondary Y-axis. I need the chart to draw the series in a specific Z-order (meaning which…
Jens
  • 6,275
  • 2
  • 25
  • 51
4
votes
1 answer

ASP.NET chart controls & character encoding issues

I'm trying to use the ASP.NET chart controls for a website that is localised for number of languages. However, we've had issues with the charts when we recently added a Chinese localisation - all of the labels show squares where we actually want…
Simon Rice
  • 1,119
  • 1
  • 13
  • 22
4
votes
1 answer

DataVisualization - empty function bodies in ILSpy

I'm doing some astrophysics research and I'm analysing data using Win-Form Chart component. On X-Axis is date and on Y-Axis is value, and I'm applying MovingAverage using member method DataManipulator.FinancialFormula of Chart on values. I and my…
Rfilip
  • 257
  • 1
  • 3
  • 16
4
votes
1 answer

How to make WinForms chart control primary Y axis to be drawn on both sides of the chart?

Y axis and its level labels are only drawn on the left by default while the right side appears unbordered and unlabelled. How to make them to be duplicated on the right side?
Ivan
  • 63,011
  • 101
  • 250
  • 382
4
votes
1 answer

MSChart Doesn't Fill Entire Chart Area

The MSChart does not fill entire Chart Area, I tried using the example ( Why Doesn't MSChart Fill Entire Chart Area?) but it did not work I am using the code below volumeChart.ChartAreas["ChartArea1"].AxisX.Interval = 1;// a cada 1 coluna 1…
Jhow
  • 43
  • 1
  • 5
4
votes
1 answer

Is it possible to export/save tooltips with MSChart in ASP.NET?

I currently have two separated servers; an internal server with a database and an external server to which clients have access. On the internal server I want to query a database and generate a number of charts based on requests made by clients. So…
Soulrift
  • 53
  • 6
4
votes
1 answer

How to make Chart Legend Items interactive in C#

I have created a chart at run time using win forms (C#.Net Framework 3.5). I want to make the legend items of this chart interactive. My requirement is, when a user clicks on Color item present in legend - a color pallet should open and when user…
Nilesh Barai
  • 1,312
  • 8
  • 22
  • 48