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.

learn more… | top users | synonyms

30
votes
3answers
13k views

Microsoft Charting, MVC 3 and Razor

Related to This topic I wonder if anyone has made the Microsoft Charting library working with Asp MVC 3 and Razor. I know about the new chart helper introduced, but since that is very limited that is ...
13
votes
4answers
17k views

MS Chart with ASP.NET chart type “column” not showing axis x label if there are more than 9 bar in the chart

I'm having problem with MS Chart chart type column. If there are only 9 bar in the chart like the following picture, then the axis-x label show up properly. However, there are more than 9 bars bar ...
13
votes
7answers
5k views

Auto-Interval precision in MS Chart

I'm currently using the charting within .NET using System.Windows.Forms.DataVisualization.Charting.Chart. Thus far it seems very powerful, and works great. However, there is a huge problem in terms of ...
10
votes
2answers
3k views

MS Chart Control axis formatting

I'm using the MS Chart Control in a Winforms app I'm writing. The X-axis component of the scatter plot I'm displaying is Int64 data, which ultimately represents a UTC time. I'd like to take that ...
9
votes
4answers
11k views

Hide labels in pie charts (MS Chart for .Net)

I can't seem to find the property that controls visibility of labels in pie charts. I need to turn the labels off as the information is available in the legend. Anyone know what property I can use ...
9
votes
2answers
6k views

MS Chart Control Zoom MinSize issue

I'm implementing a scatter plot using the MS Chart Control .NET 3.5, WinForms, C#. My x-axis data is DateTime and noticed I couldn't zoom in smaller than a resolution of 1 day, despite setting the ...
9
votes
1answer
2k views

How to improve WinForms MSChart performance?

I have created some simple charts (of type FastLine) with MSChart and update them with live data, like below: To do so, I bind an observable collection of a custom type to the chart like so: ...
8
votes
1answer
6k views

ASP.Net MS Chart Control Pie Chart: remove unwanted padding

HI im trying to create simple pie chart using the MS Chart controls. When my pie chart gets rendered in the browser i get padding around the pie chart that i cant get rid of. i would like the pie ...
8
votes
1answer
14k views

Enable Scrolling on the Microsoft Chart Control for Windows Forms

I understand that Scrollbars are only shown when zooming occurs. In other words, even if a scrollbar is enabled, it will only be visible when a view is being displayed. but then, how do I ...
8
votes
5answers
6k views

Showing Mouse Axis Coordinates on Chart Control

Is there a simple way to retrieve the X/Y coordinates of ANY point in the chart Area (relative to that chart Axis of course)? As of now, I just managed to retrieve coordinates when the mouse is on a ...
8
votes
2answers
8k views

ASP.NET Chart: setting the fonts on X and Y axis

Consider an ASP.NET MVC controller method that builds an ASP.NET Chart image. public FileStreamResult MakeImg(IEnumerable<MyObj> stats) { Chart barchart = BarChart(400, 300); ...
8
votes
1answer
1k views

DataPointCollection Clear performance

I have this 2 examples: 1 Example: Series seria = new Series("name"); for(int i = 0 ; i < 100000 ; i++) { seria.Points.Add(new DataPoint(i, i)); } ...
7
votes
2answers
3k views

Definitive list of all available CustomProperties for Series and DataPoint in MSChart

I am working with the .NET 3.5 MSChart controls and from time to time I find that I need to add custom properties to either the Series or DataPoints. For example: Series series = new Series(); ...
7
votes
2answers
5k views

MSChart: ChartImageHandler pros/contras of the different storage settings

I'm using the MSChart Control in a Web Project. I saw that there are 3 different storage mode settings: file/memory/session. I couldn't find any information about the pros/contras or the impact of the ...
6
votes
4answers
5k views

ASP.NET with MS Chart disable the vertical line

I have a graph created with MS Chart like the following picture. As you can see the vertical lines are messed up with value of the top of each bar. Here's the mark-up for the graph: ...
6
votes
4answers
15k views

Chart Control Y axis auto-scale on scrolling

I've been searching the net for some time now yet still haven't found any good solution to my problem. I want to make MS Chart to automatically rescale Y axis on scrolling to make sure that all data ...
6
votes
2answers
933 views

Disabling/Fixing Code Analysis warnings from .Designer.cs files

I am using DataVisualization.Charting.Chart extensively, and for the most part it is working. However, I've been running Code Analysis frequently, and have all my own warnings taken care of. But, ...
6
votes
1answer
1k views

MS Chart Control :Two X Axis, one for hours, another for days (or mixing both)

Is is possible to have an X Axis display hours (HH:MM) and another (or the same) displaying Days (YYYY-MM-DD) at different intervals so it look like | | | ...
6
votes
4answers
676 views

MSChart Unhandled Overflow exception after zooming

This Question has been languishing un-answered on the MSChart forum for over a year. I'm continually getting an overflow exception on a chart. I'm setting up my chart as follows: ...
5
votes
4answers
11k views

MSCharts “No http handler was found for request type 'GET'” error

I tried to install MSCharts on my Win2008 server. It installed without problem. Then I wrote in config. But when I'm trying to open page with charts it returned following error. No http handler ...
5
votes
2answers
6k views

C# dashed lines in chart series?

I'm using the Chart control from .net 4.0 in my C# WinForms app. I have two series' of data displayed as line graphs. I'm graphing basically a supply and demand as a function of time. I want the ...
5
votes
1answer
2k views

Microsoft Chart Control: Prevent Series from appearing in Legend

In the MS Chart control (which they bought from Dundas), I have three series that need to be plotted. Two of the series should have an entry in the Legend, but the third should not. I've tried these ...
5
votes
2answers
6k views

Force a gap between points on the x axis (MS .Net Chart Controls, Column Chart)

I have a column chart with multiple series each containing multiple points. Currently the columns all touch each other. I want to force a gap between each column. How can I achieve this? I found that ...
5
votes
4answers
3k views

Comparison between MS Charts and ZedGraph?

Question: Anybody has experience with ZedGraph / MS-Chart controls ? I am thinking about which to use ? Basically, I have a tendency to ZedGraph, because I need .NET framework 2.0 while MS-Chart is ...
5
votes
1answer
705 views

How to draw text onto an empty MS Chart ChartArea?

I'm using Microsoft's Chart control to plot some series, but if I have no data, I want to display "No Data Series" on the area where the plot would be. Like this: I have a hunch it has something ...
4
votes
4answers
67k views

Sample using MSCHART in C#

Anybody know where to find an sample form using MSChart in C#? I made an example. //name program.cs using System; using System.Collections.Generic; using System.Windows.Forms; namespace ...
4
votes
4answers
813 views

Optimize Chart with 10000+ points

I have chart that can contain a lot of points (10000 +) When I scale the chart in order to see all points in screen, it takes some time to draw them Can You advice me some optimization, in order ...
4
votes
5answers
6k views

How to hide datapoint label when value is zero in a StackedBar

I have a StackedBar which shows 5 values per bar, with the data value displayed in the middle of each block. So far, so good. However, when the value is zero, the value is still being displayed, which ...
4
votes
1answer
2k views

Microsoft chart stacked column chart has gaps

I'm using the Chart library in .Net 4.0 to create a stacked column chart with several series. My goal is a histogram that shows the cumulative number of actions (report completions) per day across ...
4
votes
3answers
2k views

Can I display a message if MS Chart Control has no data?

Is there a way to display a "default" message on a MS Chart Control if there is no data to chart? I have a chart, with some controls that allow the user to pick various date ranges. If there is no ...
4
votes
3answers
381 views

How do I get an in-memory chart (or image) into an in-memory OpenXML document?

I'm having a nightmare of a time trying to add a Chart to a MemoryStream in-memory. I'm creating a Word document on the fly using OpenXML and I have a chart that is also being dynamically generated ...
4
votes
1answer
1k views

MS chart radar axis frequency

I'd like to draw a radar chart using MS Chart control in a WinForms app. This chart contains data for 1 day, I have data for every seconds, so I have 86 400 x-y value pairs. X axis contains dates, y ...
4
votes
1answer
371 views

F# chart control change legend text

when using F# chart control library, how can I specify the text of the legend? for instance: FSharpChart.Line [ for f in 0.0 .. 0.1 .. 10.0 -> cos f ] |> FSharpChart.WithLegend() ...
4
votes
1answer
3k views

MSChart Y-Axis and X-Axis Labelling

I have data plotted onto a MSChsart line graph. On the Y axis I have values ranging form 0 300. could anyone let me know is it possible to change my: Y-axis LABEL values from (0 to 300) to a value ...
4
votes
3answers
3k views

MS Chart Control: Change the order of series in a legend

How do I change the order of series in a legend? My Line series is appearing before my StackedColumn series, but after my Column series. Chart c = new Chart(); ChartArea ca = ...
4
votes
1answer
2k views

Specific way to show a serie in MSChart using c#

I wonder if there is any way to show this serie as follows, the chartype is column. I'm aware that I need an (X,Y) pair to show the datapoint in the graph, but the thing is that I need to show a Y ...
4
votes
1answer
945 views

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 ...
4
votes
1answer
226 views

Moving labels off the pie chart

I am trying to move the labels OFF of the pie chart using the canned chart control from VS2010 (mvc, ef and asp.net) Here is my code to display the piechart. string xx = activePhysicianID; ...
4
votes
1answer
880 views

MSChart Annotation Size

I have an MSChart with annotations, the charting area is sizable so that people using the old school 800x600 can see the chart. Problem is, when I view my chart under this low resolution, the ...
4
votes
1answer
146 views

Interpolation implementation in MS Chart

I require to implement Interpolation and Extrapolation in Ms-Chart in Windows Application. For Interpolation I am using "MathNet" Library. but still I am unaware to implement this. I have try to ...
4
votes
1answer
696 views

How to show values as legend?

I have a bar chart and I want to show the YAxis values as legends. The default behavior seems to be Series as legends... How can I show the legend with YAxis values?
4
votes
1answer
1k views

How can I adjust the position of the x axis labels of a MS Chart in .NET?

I have a chart that I'm generating on the fly through a generic handler. I've got the data loaded and by default it looks like this: If I adjust the crossing I get the desired effect I'm looking ...
4
votes
1answer
4k views

Label on the Chart using Microsoft Chart controls

I am creating a 3d chart using Microsoft Chart controls. Here is the image: I want to show the point on the top of each bar graph. Like for Exam 1 on top of bar chart it should show 2 (as in 2 ...
3
votes
2answers
2k views

How to save a Chart control picture to a file?

Having a chart displayed with a System.Windows.Forms.DataVisualization.Charting.Chart control in a .Net 4.0 WinForms application, can I save its render into a picture file?
3
votes
3answers
6k views

How to show tooltip on MS Chart

I am using MS Chart control to draw graphs on Winform. I want to show the current (x,y) Value as tooltip on Mousedown on chartarea. How do I do that?
3
votes
1answer
13k views

Microsoft Chart Controls and X-Axis time scale format

I have a Microsoft Chart Controls within my winforms app. I currently play the X and y values within a loop. I also had the X-axis format set as ChartAreas[0].AxisX.LabelStyle.Format={"00:00:00"} ...
3
votes
3answers
9k views

Values in a pie chart

How do you display the values of each pie in a pie chart using ChartHelper? I am using MVC3/Razor syntax. Trying to do something like this: The image is from this tutorial for ChartHelper in MVC: ...
3
votes
1answer
2k views

MSChart and ASP.NET MVC Partial View

I'm currently trying to add an MSChart to a partial view in ASP.NET MVC RTM. I have reviewed the following blog entry, and I'm currently investigating Option B. If I take my code an place it inside ...
3
votes
1answer
646 views

Text in MS Charts gets “blocky” when BackColor is transparent

When settings BackColor = Color.Transparent, this is the picture I end up with from Microsofts asp.net chart control http://login.competencetool.se/blockychart.bmp If I don't set any ...
3
votes
1answer
2k views

drawing line graph with primary and secondary y axis c#

I have been researching ways of drawing charts in c#. I have a specific requirement of drawing a chart with a y axis and x axis and a seconday y axis.I have tried using excel Interop but have not ...

1 2 3 4 5 13