Questions tagged [microsoft-chart-controls]
150 questions
0
votes
2 answers
How to display start and end points x-axis label in a chart in c# windows forms?
I am just a rookie at C# windows forms application. I am trying to plot a chart from a data table using the function this.chart1.Series[0].Points.DataBindXY(dt.DefaultView, "tms", dt.DefaultView, head[1]); where dt is the data table, tms is…

Diode
- 68
- 10
0
votes
1 answer
ASP.NET 4.0 Chart Control Broken Image Link
I have Microsoft Chart Controls set up in a Web Forms project. The chart is rendering as a broken image link. The page I'm attempting to add the chart control is in a location with this path:
http://localhost/application/default.aspx
The broken…

IrishChieftain
- 15,108
- 7
- 50
- 91
0
votes
1 answer
Chart C# add Data Point in cubic bezier curve
I have written a method to create a Bezier curve for rendering in a Chart control. I have a collection of data points which I retrieve from another method. I would like to form the Bezier curve on my chart to produce something similar to a spline,…

SamSingh
- 13
- 4
0
votes
0 answers
Custom X-axis label formatting in Winform Chart Control
I am plotting graph with numeric value on Y axis and Date time value on X axis in windows forms chart control. I am setting X axis scale "IsLogarithmic" to true and i am getting the graph as shown in the image ...
I want to set the label formatting…

Nimit Vachhani
- 65
- 11
0
votes
1 answer
Microsoft Silverlight charting odd interval
In a simple Microsoft chart control in Silverlight I have the days of one month as dates on the X axis and double values on the Y axis. I would like to display every second day on the X axis but those days should be the odd days.
If I set the…

Germstorm
- 9,709
- 14
- 67
- 83
0
votes
0 answers
Microsoft chart with chart type is Column
I tried to decrease space between space between columns and also wanted to decrease width of columns, but I was only able to adjust width of columns not space between columns.
please help for solution. I really appreciate the effort.
Code snap: `
…

Gotu31
- 1
- 1
0
votes
3 answers
How do I get this chart in a ASP.NET chart control?
What type of chart or what properties should I set in ASP.NET 4.0 chart control to get something like this:

Saw
- 6,199
- 11
- 53
- 104
0
votes
2 answers
Line Chart with different colors on a different interval at x-axis fill in same series?
I created a Line Chart control in Windows Forms.
I divided the ChartArea, AxisX into four intervals but I want to apply back color (unique color) to each interval.
Can someone help me on this?

Appalaraju
- 11
- 4
0
votes
1 answer
ASP.NET chart control background image: URL is not a valid virtual path
I'm trying to set a background image on my ASP.NET (built-in) chart control to an image located on: http://www.example.com/images/logo.png
I can access this image in my browser.
But I'm getting this error:
'http:/www.example.com/images/logo.png' is…

Adam
- 6,041
- 36
- 120
- 208
0
votes
1 answer
Display all points in chart control on a windows form in C#
I am trying to display several points with x and y coordinates between 0 and 200 in a chart control on a Windows form app in C#. My code looks like the following:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using…

Adi
- 75
- 1
- 9
0
votes
0 answers
Data and Series label not showing on WinForm Chart control
I am having a problem getting the default WinForms Chart control to work. I have a single chart with a single area. In this area, I want to display three (3) series whose labels are on a single legend.
Each of the value arrays shown in the code…

Lord of Scripts
- 3,579
- 5
- 41
- 62
0
votes
0 answers
User Control Chart does not display data points
I've implemented a User Control class to extend the functionality of the Chart class. This chart will have data added to it in real time. The User Control class creates a ChartArea, and adds it to the underlying chart. It also adds a Title, Legend…

Sean Martin
- 3
- 3
0
votes
1 answer
Inherited Chart control: How to change default values and behaviour
I'm trying to implement a scrolling line chart (similar to the old chart recorders) by inheriting from the chart control. To do this, I need to do two things:
Change default properties of various objects the Chart control uses
Series should…

Sean Martin
- 3
- 3
0
votes
1 answer
Controlling Microsoft Charting Controls focus
I am currently using MSCharts in one of my windows forms. One of the quirky things about MSCharts is that you cannot trigger a MouseWheel event in the chart unless the chart has focus. To combat this, most people are saying that one should add a…

john
- 139
- 1
- 8
0
votes
0 answers
how to achieve drill down functionality in asp.net mvc project using asp.net chart control
I have created a chart in asp.net mvc project..
Controller looks like:
public ActionResult ApplicationPieChart()
{
var _context = new chart();
ArrayList xValue = new ArrayList();
ArrayList yValue = new ArrayList();
…

Deepshikha Sharma
- 13
- 4