Tagged Questions

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

16
votes
2answers
5k 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 ...
10
votes
6answers
2k 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 ...
9
votes
5answers
11k 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 ...
8
votes
1answer
377 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
1answer
1k 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: ...
5
votes
2answers
276 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
1answer
3k 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 ...
5
votes
2answers
2k 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 ...
5
votes
4answers
6k 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 ...
5
votes
1answer
452 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 ...
5
votes
2answers
4k 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 ...
4
votes
1answer
452 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
197 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
535 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 | | | ...
4
votes
1answer
445 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
3answers
3k 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: ...
4
votes
1answer
658 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
2answers
3k 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 ...
4
votes
4answers
5k 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 ...
4
votes
2answers
1k 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
6k 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 ...
3
votes
1answer
23 views

MS Chart DataBindXY Gives Zeroes for X Values

Let's suppose I have a Winforms app with a Dictionary that looks like this: private Dictionary<string, double> ChartCollection = new Dictionary<string, double>(); And let's suppose that ...
3
votes
1answer
89 views

Mirrored Stacked Column Chart - Javascript / C#?

I am looking for a library to use that will allow me to create mirrored, stacked column charts such as this. For my web application, I am using the Google Visualisations API for interactive client ...
3
votes
1answer
239 views

Ms Chart ChartImageHandler storage options

I read some articles about ChartImageHandler storage options.It has 3 options. I have 3 question about every options. 1)if we choose file options then image created by ms chart first stores in ...
3
votes
1answer
176 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?
3
votes
1answer
144 views

Polar chart x axis 0 placement

I have a polar chart I created by MSChart control in my WinForms app. X axis type is date, y is integer. X represents exactly one day. My problem is that I can not set date 00:00 to the place I need, ...
3
votes
2answers
265 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, ...
3
votes
1answer
276 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 ...
3
votes
1answer
574 views

HOw To Show Data in Ms Chart on Mouse Over C# Web Application

i am using ms chat sp line i want that when i take my cursor to the chart to any point it will show the reading at that particular point as my chart is as DataView dv = dtGroupedBy.DefaultView; ...
3
votes
1answer
346 views

Align x axis of one ChartArea with y axis of another?

I'm working with System.Windows.Forms.DataVisualization.Charting (C#, VS 2008). I have two ChartAreas, one containing a SeriesChartType.Line and the other containing a SeriesChartType.RangeBar. ...
3
votes
1answer
393 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 ...
3
votes
2answers
536 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(); ...
3
votes
1answer
318 views

150K rows for scatter plot graph loading forever?

I have 150K records of X and Y columns and I am trying to draw a chart for FinanicalFormula. It is taking time to create chart for ever. It is not throwing error also. Chart1.DataSource = dtChart ...
3
votes
2answers
991 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 ...
3
votes
3answers
299 views

Link to a sample of a charting or scheduling control

I'm looking for a component that I can use to plot class times against a timeline for four different instructors. So the y axis will contain a timeline at 30 minute intervals, with the instructors ...
3
votes
4answers
2k 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 ...
3
votes
1answer
946 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 ...
3
votes
1answer
2k 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 ...
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
4answers
2k 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 ...
2
votes
1answer
105 views

Simple Bar Chart in C#

I wanted to ask if its possible to create two simple bars using MScharts to look like this: I want an exact replica of the above image, so no diagram or grids, just two simple bars like these. ...
2
votes
2answers
95 views

ASP.NET MVC: MsCharts working on dev but not on production

I'm having trouble getting MsCharts to work when deploying on my production environment. The application is a .NET 4 ASP.NET MVC 2 site with IIS 7.5. Everything works fine when I'm running on Visual ...
2
votes
1answer
141 views

MS Charts: Getting the real InnerPlotPosition?

When creating charts using Microsoft Charts, I need to get the exact position of the grid on the chart. This page says -- as I understand it -- that this can be achieved with InnerPlotPosition. ...
2
votes
2answers
137 views

find the region part of live using c#

I have done like this for creating click event handler for one part of the chart using mschart control, the chart is like this and the code like this private void targetChartmouse_Click(object ...
2
votes
4answers
492 views

C# Setting FontDialog to only display TrueType fonts

This question has been asked in practically every forum, including here but there are no acceptable answers anywhere that I can find. I'm beginning to think that there is actually no solution and I ...
2
votes
1answer
468 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 ...
2
votes
3answers
271 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 ...
2
votes
3answers
4k 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 ...
2
votes
0answers
358 views

MSChart scroll bar implementation + plotting

I have an MSCHart control in my windows Form, coding in C#. Basically I have an array of Data to populate the chart. I was needing to do the following with these: 1) Read the chart in 10 second ...
2
votes
1answer
503 views

Multiple MS Charts on the same page use the same image map

I'm using the Microsoft Chart control to put a couple of charts on a web page. If you render 2 charts, the resulting HTML is something like this (the table is mine, the img and map are from the MS ...

1 2 3 4 5 7