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. ...
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. ...
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...
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'...
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...
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...
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...
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 ...
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 ...
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 ...
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...
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? ...
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...
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...
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...
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? ...
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...
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...
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"...
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. ...
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...