Questions tagged [microsoft-chart-controls]

150 questions
0
votes
0 answers

Why I can't add value to second chart?

I'm currently using MS Chart Control. And in this object i have 2 series: Balance and Volume. Data to foreach (double balance in grStats.getChangedBalance()) { chartBalanceAndVolume.Series["Balance"].Points.Add(new DataPoint(0,…
Relrin
  • 760
  • 2
  • 10
  • 28
0
votes
1 answer

.NET web- show advanced pop on Chart Control Mouse-over

In a .NET C# line chart, for Every Empty Point marker, I want to display a popup when a user hovers the mouse over the marker. It seems simple to add a simple string as a tooltip, but I need to create a small popup box for each empty point marker…
mplace
  • 65
  • 8
0
votes
1 answer

Microsoft Charting scrollable LineSeries within WPF

I am using System.Windows.Controls.DataVisualization.Charting to create a line graph in WPF It it working ok as the data is being diplayed. However depending on the data being accessed it gets very messy and scrunched. Is there anyway to may the…
twaldron
  • 2,722
  • 7
  • 40
  • 55
0
votes
1 answer

Microsoft Chart control and Reporting Services reports (SSRS)

I'm wondering whether anyone has been able to use the Microsoft Chart control in SQL Server Reporting Service reports? Specifically the 2005 version... Further to that, are the SSRS 2008 charts the same control (as the Chart control)? (i'm thinking…
davidsleeps
  • 9,393
  • 11
  • 59
  • 73
0
votes
1 answer

Microsoft .NET Chart control - select points using rectangle

Data with X, Y values is plotted on as a scatter chart using the .NET 4.0 Chart control. I believe the Microsoft chart control was obtained from Dundas. I would like to select points on the chart using a rubber-band rectangle similar to the…
DarwinIcesurfer
  • 1,073
  • 4
  • 25
  • 42
0
votes
1 answer

Can microsoft chart control run with .net framework 3.5 without service pack1?

Can we use the DLL that getting from installation of microsoft chart control for f/w 3.5 service pack1 into the special application where there is not setup service pack1 for .Net 3.5?
Girish
0
votes
0 answers

How to clear viewstate data of a chart control asp.net

I have a Chart on a web page. I have few Buttons as well. One of the buttons is to bind data to the chart. And I have a dropdownlist to have different options to load the data and bind the chart. If I click on other buttons on the page, the page…
Laurence
  • 7,633
  • 21
  • 78
  • 129
0
votes
2 answers

How to set Axis Title in asp.net chart controls

The AxisX title is "Date". But how can I change its direction? I would like to see "Date" horizontally. The AxisX Labels direction is set like this: chartCalls.ChartAreas[0].AxisX.LabelStyle.Angle = -90; Any idea?
aleafonso
  • 2,244
  • 8
  • 38
  • 58
0
votes
1 answer

Creating a chart from model. (MS Chart Controls in asp.net mvc3)

I'm trying to create charts in a view , the content (name/ series/type etc) will all be determined by the controls a user selects in the view. As long as I load an already created chart all is fine, for example: Inside my View:
0
votes
1 answer

Can I create X numbers of Series using Chart Control for a line chart based on data returned Asp.net vb

I will be developing some charts for a project .. at this moment, I am just creating specification document for stored procedures and some bits seem mystery to me ... I will be using ASP.net Chart Control. The chart will be a Line chart and show…
0
votes
1 answer

Asp.Net Chart Control - Truncated Values on X Axis

Man I'm really stuck. I've been trying to get through this for nothing less than a week. I'm plotting a horizontal bar chart, a simple (Y) Hours vs (X) Avg. Rate. The number of hours is fixed, I must always show from 0h to 23h, in order to maintan…
Elarrat
  • 13
  • 4
0
votes
1 answer

Microsoft Chart Controls - Xml Bind?! C#

I have an xml file: 06/07/2009 00:00:00 Monday 3248 50 07/07/2009 00:00:00
Goober
  • 13,146
  • 50
  • 126
  • 195
0
votes
1 answer

C# Chart Control serie is covered by custom label

I'm using C# chart control to draw a nyquist plot. Now i want data points appear on the curve each time the user moves the mouse on it. So i used hit test method in GetToolTipText event. private void BodePlot_GetToolTipText(object sender,…
Jay Dao
  • 494
  • 6
  • 15
-1
votes
1 answer

Microsoft Chart - Using FastLine instead of StepLine for high performance?

I'm using Microsoft Chart in order to draw some stepline charts. Should I use StepLine directly or should i make my own using FastLine in order to be faster ? In other words, do anyone know if the stepline is built on the Line or on the FastLine…
ykatchou
  • 3,667
  • 1
  • 22
  • 27
-1
votes
1 answer

ASP chart StackedColumn100 add percent symbol (%) on values

I have this chart (using Chart control build-in on .NET): How do I add percent sign (%) behind of all values (for example 44 => 44%, 56 => 56% and so on) Edit (after tried jstreet's sugesstions in comment): StackedColumn100 chart so values are…
Ronaldinho Learn Coding
  • 13,254
  • 24
  • 83
  • 110
1 2 3
9
10