mschart

How can I add more than 2 axes for MS Chart plot?

My project will have a reporting ability with more that 2 Y axes. It would be ideal to manage doing something like this, but using MS Chart. Thanks in advance. ...

MS Chart customize value label and draw Line series across the chart area

I'd like to get suggestion in both C# and VB.NET I created Chart like the following image: How can I customize the value on the top of each column from code-behind? Instead of showing 21, 49, 19 I'd like to show 21 hr, 49 hr, 19 hr How can I show the those values on top of other lines? As you can see 19 is below the Line series. Can...

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.5 (and I don't know how well a 3.5 assembly works on 2.0) and because I could use it privately, too (I use Linux privately). But I don'...

ms Chart Multiple Series X Value Mismatch (ASP.NET)

Hi, I'm currently developing a website that shows multiple charts that I build using data from SQL tables. I've used and followed Scott Mitchell's tutorial (http://www.4guysfromrolla.com/articles/093009-1.aspx) and K. Scott Allen's ChartBuilder class (http://code.msdn.microsoft.com/mag200903XASP/Release/ProjectReleases.aspx?ReleaseId=224...

PieLabelOffset does not seem to have any affect

I'm creating a simple pie chart with three data points. The first and second data point are around 10% each while the last data point makes up the remaining 80% of the chart. This means that the labels for the small segments are by default placed quite close to each other near the center of the chart. I'm trying to move the labels furt...

Where should temp files created by the MS Chart control go?

The default location: <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" /> is fine for development, but not so good for deploying on IIS. I found a forum post that mentioned you could drop the path altogether, which dumps the temp file(s) directly in the root of my project <add key="ChartImageHand...

Line Graph in windows form app in vb.net

Hi, using vs2008 I am trying to create a line graph using vb in a windows form. I have dragged a chart onto the form, and via the properties window, through the series option have changed the type to the graph that I want, which is line. But all the time the data is displayed as a simple bar chart. How do I remedy this please to get the ...

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 how it is auto-calculating intervals. I use a lot of double values, and in libraries like ZedGraph, it handles this perfectly. It selects ...

How to show Datapoint lable values in legend in MS BAR Chart

Hi, Can any one please assist me on how to display label values of potential(15,13) shown in the following image link MS Chart Image in the legend which is currently showing #VAL. Actually not only the one point,can suggest on how to display the label values on each point in the legend. To get the values of important,critical points ...

Microsoft Chart Controls Legend Item Ordering

I've got a chart with 8 series - call them S1 through S8. They're in order in the chart's list of series, and they're presented using custom legend items (Legend.CustomItems). Everything works fine, except there seems to be a bug with how items are displayed in the legend when the legend wraps around to a new line. I'd like the items to...

MSChart inside a usercontrol

Can you use the new Microsoft Chart Control for .NET Framework inside a usercontrol? Bacause when i take a working chart from my page and then copy it to a usercontrol the picture is blank very weird. Is there something wrong in my chart settings? ...

MSChart and StepLine direction

Hi everyone! I'm using MSChart in one of my projects to draw chart. MSChart first draws horizontal line and than it draws a vertical line. Can I change that order? I would like vertical line to be drawn first and horizontal line to be drawn second. I attached a demo image. The first figure (red lines) represents what I have now, and th...

Can a MSChart series become a ModalPopupExtender's TargetControlID?

Hi, I'm asking for advice about MSChart. I need to breakdown my chart into more detail charts. It is when the user click a series. I want to display the detailed version of the chart in a modalpopupextender. Can a serie in a chart become a targetcontrolid in a modalpopuextender? Or do you have another advice to breakdown my chart? Than...

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: InstrChart.Legends.Clear(); dataArea = InstrChart.ChartAreas.Add("Instr1"); dataArea.AxisX.MajorGrid.Enabled = false; dataArea.AxisY.MajorGrid.Enabled = fa...

Line Chart for .NET prior framework 3.5

I am developing an application and I must do it in WPF and use .NET 3.5. The problem is that I can't use MSCharts for 3.5 because that would require XP installations to install SP3, something that they don't want. The WPF toolkit was buggy on their machines, so is there any other solution or I should start just drawing lines? ...

Need to set time range on Y axis on a MSChart.

I'm looking to set the y-axis for a MSChart to be midnight to midnight, in either regular time format(i.e. - "1:30 AM") or military time. I figured out I can specify the y-axis format using ChartArea.AxisY.LabelStyle = new LabelStyle() { Format = "HH:mm" }, but cannot figure out what to set the minimum/maximum values to be. Has anyon...

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 class times stacked in one column per instructor. Any idea what control I should look at using? I thinking the MS Chart control stacked col...

how to increment y axis values by 15 minutes using ms chart controls

I am working with the MS chart controls stackedcolumn chart type and I want the y axis labels to increment by 15 minute intervals between 4 pm and 9 pm. I have attached an image of what the chart looks like and have attached the sample code that generated the image. <asp:Chart ID="Chart1" runat="server" Height="296px" Width="412px"...

how to customize series datapoint labels with ms chart control

I have the following stacked column chart and I'm would like to customize the labels for the datapoints in each series so they were similar to '4:00 - 4:30 (class name)' next datapoints in the series would be '4:30 - 5:00 (class name)' and so on. ...

Why does setting the y axis in a ms chart break the appearance of my stacked columns?

I'm trying to get the y axis values displayed as in image 1, but have the data display as it does in image two (but reversed to match the axis values). Here's the code I've been working with: private void BindChart() { int intSectionCount = 4; int day = DateTime.Now.Day; int month = DateTime.Now.Mon...