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

0
votes
0answers
15 views

Visual Stusio doesn't recognize System.Web.DataVisualization

I'm writing a Windows Forms application in C# in Visual Studio. I'm using the MSChart in my project. I want to create an object: public Series myseries = new Series("Default"); The VS doesn't ...
0
votes
0answers
18 views

MS Charts version 3.5 in VS2012 giving an error in the designer

We have just upgraded to VS2012 from VS2010. However, any form with a chart control on it will not load in the designer (although it compiles and runs OK). We are using the .Net 3.5 version of ...
1
vote
1answer
32 views

Trying to display line chart using DataBindCrossTable method always bar chart appears

Iam trying to create a chart in asp.net using inbuilt chart controls ,I read the data from the sql using a stored proc and stored it in a list .When I use the datacrosstable always the barchart is ...
0
votes
1answer
47 views

Data Point Label Is Not Showing On First Bar Of Bar Chart using MS Chart

i am using microsoft chart in asp.net and I have a simple column chart with point labels, however, the first data point is not showing for the bar closest to the Y axis. I have five year of data ...
0
votes
0answers
42 views

multi series chart in asp.net using C#

I am trying to show multi series chart using MS Chart in asp.net. After couple of days of research, I was able finally to get my char working but only with one series. I am also pulling the data ...
1
vote
0answers
27 views

On using aligndatapointsbyaxislabel, second series disappears

I've got four lists, which I am plotting on a mschart control. Two are string lists, two are double lists: dbl1 = 5, 7, 9, 11 str1 = a , b, c, d dbl2 = 13, 15 str2 = b, d I am using ...
0
votes
0answers
50 views

Percentage and count not showing in legendtext of column chart(MSChart -SeriesChartType.Column)?

I am showing graphical presention of data in MS chart .using pie and column chart . pie chart is showing count and % of data but column chart not showing? foreach (var platForm in platForms) ...
0
votes
0answers
17 views

MS-Charts Zooming in Secondary Y axis

I am new to MS-Charts. So kindly excuse me if in case the question is inappropriate. I am working in win-forms and I have a Chart control where i use line-type series data. I have also enabled zooming ...
0
votes
2answers
64 views

Draw on MSChart control

I've got a simple line graph and I'd like to highlight some parts of this graph by drawing a rectangle around the line (ideally a filled rectangle with transparency...). I haven't any idea if this is ...
0
votes
1answer
80 views

Mschart - How to change width between bars

I know how to change the width of the bars using PointWidth which will relatively increase the space between the bars, but I want to keep the same width of the bar while increasing the space between ...
1
vote
0answers
30 views

.net chart with columns and different scales (plus a few more questions)

Below is a graph as I have it so far. It has 1 area, with 5 data series The graph is over the course of a month, as you can see all of the tuesday's are grouped, wednesdays, etc. I would like to ...
0
votes
0answers
25 views

How do I set the label of an MSCharts datapoint just above the horizontal axis of a Column Chart?

I have an MSChart that I need to display columns and I need to show the values of each column. The catch is the location has to be at the very bottom (just above the X-Axis) of the chart. I've found ...
2
votes
0answers
68 views

MS Chart (C#) - How to put the X label on the left for a column series

I am currently working on this graph (sorry it's my first post, so with my reputation I can't post image directly) : Graph I am working on For a giving hour, for example 10h, my Y value represents a ...
0
votes
0answers
36 views

MSChart appends more point on bargraph instead of refresh

I would like to know how I can display a bar graph in windows form based on a radio button selected. The radio button should allow the user to select a machine that they want to view the bargraph for. ...
0
votes
0answers
16 views

MSChart : How to plot decimal values

When I draw my Bar chart with values > 1 it draws fine but if the values are like 0.1, 0.2 etc then it ignores and don't draw anything. How do I force my chart to accept both integer and decimal ...
0
votes
0answers
22 views

VS2010 Composite control w/ MS Chart, used by VS2008 project

Developing a composite Windows Forms control, which will need a simple scatter plot embedded in it. However, MS Chart is not included with VS2008 IDE, only 2010 and newer. Can this be developed in ...
0
votes
0answers
53 views

Minor grid with custom labels in MS Chart

I'm using Chart control to visualize data with both axis of type Number. Data is received at irregular intervals, so X and Y axis have ugly formatted numbers, just like here: Auto-Interval precision ...
0
votes
0answers
27 views

Hosting MS-Charts in WPF app causes ReleaseHandleFailed only when debugging in Visual Studio

I'm hosting WinForms element in WPF app. The element is an MS-charts object: _chart.DataSource = GetDataSource(); _chart.Series.Add(GetSeries(dataSet)); _chart.ChartAreas.Add(GetChartArea()); ...
0
votes
0answers
32 views

MVC3 Chart Control - Data not showing

I'm working with MVC3 and creating a very basic chart control using System.Web.Helpers class. I'm able to bind the data from database and able to show the graphs Issues: I'm having 15 product list ...
0
votes
0answers
104 views

MSChart - Can't add a new Series to ChartType: RangeBar

I was going through the 200 samples of the chart control and found an ideal chart i'd like to use, but i can't replicate the chart. When i click Properties -> Series -> Add, it shows an error message ...
0
votes
0answers
38 views

mschart column graph SideBySide Mode off, Bringing beneath columns to front

Random random = new Random(); for (int pointIndex = 0; pointIndex < 10; pointIndex++) { chart1.Series[0].Points.AddY(10); chart1.Series[1].Points.AddY(30); chart1.Series[2].Points.AddY(50); } ...
0
votes
1answer
130 views

How do I make a pie-in-pie chart with MSChart?

I've downloaded MS Chart samples and in the gallery it shows a "3DPieInPie.png", which is what I want - but can't see any code to create it!! Presumably it's ChartType = SeriesChartType.Pie ... but ...
0
votes
0answers
61 views

asp:chart, charttype='column' with legend visible

I am a bit confused with Asp:Chart, I have a table that returns one row now I want it to be displayed in Asp:chart with ChartType="Column". I converted the above table into the format I used ...
0
votes
0answers
22 views

Moving the Axis Labels away from the Axis in MS Chart

How to set the distance of the Axis Labels from the respective X and Y Axis. Currently the my two Axis Labels which are at the intersection of the X Axis and the Y Axis are slightly overlapping.So I ...
0
votes
0answers
64 views

mouse move event does not display the content

I am using MsChart control for a charting application. In that, i am using MouseMove event to display the x-axis dynamic data on graph. Code snippet is as below - try { ...
0
votes
0answers
46 views

How can I get the size of the Plot Area in a Microsoft Chart Control

I am using the MS Chart Control in a Windows application. I am charting various series dynamically and the user can specify which charttype each series should be. This leads to situations where pie ...
1
vote
1answer
39 views

Getting Values of other Series through tooltip

I'm having a Chart whose data is coming from a list. This class has id and count1 and count2 as Properties... Now, i have a list of class...where the values are... Id Count1 Count2 1 -10 20 ...
0
votes
1answer
15 views

Hide column in chart from a query

I have the following code Private Function ChangeRowSource() Dim cap As Integer cap = Me.cmbCap.Value Me.grphSummaryNeedsPlannedChart.RowSource = " SELECT ...
0
votes
0answers
216 views

How to make multiple Y-Axis in ASP.Net Chart Control

I want to make Six Y-Axis is this possible in MS Chart Tool if yes then please help how? Want to make Multiple series how . I want user select one values for x-axis from DropDown and 6 different value ...
0
votes
0answers
45 views

DropDownList MultiSelect

I use a MultiSelect DropDownList in my project. I would like to generate a chart when the user selects values from the DropDownList. I have two Y-axis and making a MultiSelect DropDownList for this. ...
0
votes
0answers
27 views

Chart Displaying Empty after bound with a list

This is the aspx for the chart tag : <asp:Chart ID="Chart1" runat="server"> <Series> <asp:Series Name="Series1" ChartType="Bar" Legend="Legend1" ...
2
votes
0answers
122 views

VB.Net - First dataPoint in series plotting to wrong x value on chart

I'm developing a class to manage data Series for a chart. However, when I add a new series, if the first dataPoint has an XValue of 0, it instead shows on the plot as having an XValue of 1. If I add ...
0
votes
0answers
81 views

Sophisticated charting in c# using MsChart

Can somebody please help me out, I am new to C# application and I don't know if following is possible. I am currently developing an application in C#, which needs to have a graphical representation of ...
1
vote
0answers
46 views

Chart showing invalid data in win form

I am hoping someone can help me understand this chart behavior. based on the XML below <ChartData> <ChartData Count="157"> <Year>2012</Year> ...
0
votes
0answers
16 views

MSChart : LabelMarkStyle.Box not drawing box properly

When I use LabelMarkStyle.Box, It draws box but X axis labels are strike-through.Is there any property which can be set to draw box from little up ? My code is, var sectionlabel = new ...
0
votes
0answers
44 views

MSChart : Custom label wrapping not working

I'm using custom label on my bar chart but word wrapping is not happening for long text. Here is screen, My code for custom label is , var sectionlabel = new CustomLabel(min, max, ...
1
vote
1answer
165 views

C# MSChart: Zooming on an interval

I have a MSChart object which draws, among others, a line chart. The Y axis represents the value of the equity, and the X axis represents a DateTime. Using a combo box, the user is able to change the ...
1
vote
0answers
140 views

Multi Series MSChart

I am a newbie in MSChart and the code below works for a multi-series column. But I know there should be a shorter way to show Multi-Series without resorting to creating two Data Tables or much better ...
0
votes
1answer
476 views

MSChart : How to add custom label in bar chart

I want to add custom label something like that ( Category 1 and Category 2 ) but not getting idea whether I need to add new series or using custom label function.. Any help would be much appreciated. ...
0
votes
0answers
29 views

MSChart not working in other machines

I've installed and configured MSChart on my dev server and everything working fine when I access charts from my machine but same don't work when it's accessed from different machines. It throws ...
0
votes
1answer
377 views

MSChart : Labels repeating in X-axis in bar chart

I'm trying following code to create bar chart where bars must be grouped by user name but somehow getting question label repeated shown below, My Data Table is something like, ...
0
votes
1answer
94 views

in MS chart #PERCENT{N} keyword will not return only a numeric value without decimal

am using Ms chart and i just need a number or numeric value for percentage calculation so for that am using #PERCENT{N} but its returning a decimal value like 0.45 0.78 0.11 etc.. which i do not need, ...
0
votes
1answer
112 views

Need to get the pie chart with % values

My ASPX part <div runat="server" id="divMain"> <asp:Chart ID="Chart1" runat="server" DataSourceID="SqlDataSource1"> <Series> <asp:Series Name="Series1" ...
0
votes
0answers
110 views

How can I get .NET ChartControl Series Legends to display as labels in the 3rd dimension of a 3D chart?

I want to get the "Legends" i.e, (the series title) of a 3D Column chart to display along the 3rd axis of the chart instead of at the top of each datapoint. They are placed at the top of each ...
0
votes
0answers
59 views

How to get currently visible elements in msChart Control in .NET on Scale change?

I would like to get number of currently visible elements in msChart control. That is not a problem. I can use Maximum and Minimum Property of ScaleView. But I would like to display that number in a ...
-3
votes
1answer
74 views

How can I add data series labels to axis of 3D colum chart with .NET Chart Control [closed]

I want to create a 3D Column Chart using C# in Windows Forms. There are 3 data series, and I want the data series "legends" to appear as if along the "Z" axis of the 3D space. Series legend text ...
0
votes
0answers
87 views

hiding part of series lines for empty data points in vb.net for asp.net

I have code that generates a chart from a data set. Some of the points in the data set are empty, however the charts plots these empty datapoints as 0. I want the chart to plot them as gaps in the ...
0
votes
0answers
151 views

How to bind multiple Y values in Chart.DataSource()

As per this blog I want to bind multiple Y values to Bar chart but it throws following error, Data points insertion error. Only 1 Y values can be set for this data series. Parameter name: ...
1
vote
1answer
349 views

How to set the scale of your X Axis and Y Axis in MS Chart?

I have a requirement to make the X-Axis and Y-Axis intersect at the middle of my chart created using MS-Chart. The scale for both X and Y axis needs to be set based on the data points being returned ...
0
votes
0answers
117 views

Exploded pie slice offset in pie chart using MSCHART

I'm using pie chart from MSCHART library in WinForms application: While exploding the slice representing any data point was simple (point["Exploded"] = "true"), manipulation of the gap size seems ...

1 2 3 4 5 13