Questions tagged [microsoft-chart-controls]
150 questions
0
votes
0 answers
Microsoft Chart Control X-Axis
I have a Microsoft Chart with a single Series that is defined as ChartType = SeriesChartType.Line. The X-Axis is a DateTime value, and all is working as expected except the last point on the chart. It is overlapping with the end of the chart, and…

brsfan
- 472
- 5
- 13
0
votes
2 answers
Asp.net Chart control multiple series binding
I have got following dataset which is returned by SQL Server:
Group Name Month Total ORDER
Group-India Apr 80
Group-US Apr 70
Group-Europe Apr 60
Group-India May 82
Group-US May …

user3657339
- 607
- 2
- 9
- 20
0
votes
0 answers
Rangebar series not centered
I am working with a RangeBar Chart in a c# form app. When I add the series to the chart they do no line up correctly. When I change the "DrawSideBySide=false" it works fine, but I need some of the series to be side by side.
Any help on this would be…

user3642115
- 15
- 5
0
votes
1 answer
Line type of series in MS Chart control
When MS Chart control has multiple series, a different color is assigned each series automatically and by default. If I select the charttype as fastline and add two series, blue and orange plots are seen.
Instead of colors, is it possible that each…

Siha
- 47
- 1
- 7
0
votes
1 answer
Can we zoom IN zoom OUT chart image using JQUERY
In my ASP.NET applicaiton, i have used microsoft chart control and generated Doughnut and Bar charts.
Now, i need to implement ZOOM IN and ZOOM OUT feature.
I could not found any default way in ASP.NET - microsfot chart control to achieve this.
It…

dsi
- 3,199
- 12
- 59
- 102
0
votes
1 answer
CursorX and Zoom property not found for Microsoft Chart control
bELOW IS my chart code for "Doughnut" chart.

dsi
- 3,199
- 12
- 59
- 102
0
votes
1 answer
How to add zoom IN/ZOOM out functionity into chart control
I have created chart using microsoft chart control.
Below is the stuff.

dsi
- 3,199
- 12
- 59
- 102
0
votes
1 answer
Specified cast is not valid. when creating chart
foreach(DataRow row in dtRpt.Rows)
{
// For each Row add a new series
string seriesName = row["vchCompetency"].ToString();
chart.Series.Add(seriesName);
chart.Series[seriesName].ChartType = SeriesChartType.Line;
…

Zadalaxmi
- 421
- 9
- 27
0
votes
1 answer
How to trim the values of x on X-axis in Chart control in Winforms?
I have a winforms application which contains a chart control called
comparisonChart
I have implemented Zoom capability in the chart control by subscribing to the mousewheel event and doing the following.
private void…

Kaushik
- 429
- 1
- 7
- 19
0
votes
1 answer
Trying to create pie chart
I have variables populated throughout my program and on the last form I'm trying to display a pie chart that shows the portions of each expense in respect to the total expenses. The code I have right now is as follows:
Sub Chart()
…

CaffeinatedMike
- 1,537
- 2
- 25
- 57
0
votes
0 answers
chart control filter multiple series by date
I have a dynamic chart control that's manipulated by the user during run time.
The user has the ability to add multiple series' to the chart.
I'm trying to implement a way for the user to filter each series by date.
MSDN provides:
// Filters all…

Daniel
- 3
- 2
0
votes
1 answer
C# creating chart that looks like table
I'm doing a project where I have data, that can be stored in 2-dimensional array with value in every cell. Each value belongs to equivalent range and color. I need to draw a chart that will be looking like table with painted cells.
e.g. i have…

user3006529
- 3
- 1
0
votes
1 answer
Binding points in chart control
I have a Chart Control that I am trying to dynamically populate with a number of series from a sqldatasource, here's my chart control:

Ryan Gillies
- 413
- 4
- 8
- 19
0
votes
1 answer
copy chart control to new form
Is there a way to copy a chart control to a new form?
I have a Windows Form with a chart control on it, but the form is not allowed to be resizable. For that reason I have a button "Zoom" that opens the chart in a new form that is resizable. I have…

purbsel
- 307
- 8
- 21
0
votes
1 answer
How to calculate and display standard deviation?
I am trying to display a spectrum and it's upper and lower deviation. Therefor I have a Class, "SpectrumClass" where the cooridantes are stored in a DataTable (dtCoords).
The spectrum I am showing is an average of several other spectra. Whith those…

チーズパン
- 2,752
- 8
- 42
- 63