Tagged Questions

0
votes
2answers
163 views

ASP.NET Chart: setting the fonts on X and Y axis

Consider an ASP.NET MVC controller method that builds an ASP.NET Chart image. public FileStreamResult MakeImg(IEnumerable<MyObj> stats) { Chart barchart = BarCh …
0
votes
1answer
136 views

Microsoft Chart control and Reporting Services reports (SSRS)

Hi, 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 th …
0
votes
1answer
60 views

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 …
0
votes
1answer
89 views

How to use chart control’s assemblies in application without installing it?

I am using a web application in which there is a chart control. I had installed the Microsoft chart control exe and Visual studio add on. The problem is that when I upload the ap …
0
votes
1answer
64 views

How to show the color value within a chart?

Hi to All, I have a web application in which it contain a (microsoft chart chart control ) chart with X-axis as value Question & Y having multiple values as yes count, no coun …
0
votes
0answers
27 views

Developing multiple charts with same look and feel - patterns?

I'm on a team that will use the Microsoft .NET Chart control, and want to build something that will allow us to plug in data and render the chart as a PNG. This will be saved to a …
0
votes
2answers
465 views

C# Microsoft Chart Control/Dundas Charts Clear Contents!?

Hello! I am using the Dundas Chart Controls/Microsoft Chart Control for .Net. Currently I have a method which populates the chart control with date from a generic List. Lets say f …
0
votes
1answer
144 views

Microsoft Chart Controls - Xml Bind?! C#

I have an xml file: <Database> <Stat> <Date>06/07/2009 00:00:00</Date> <DayOfWeek>Monday</DayOfWeek> <SentNumber>3248</SentNumber& …
0
votes
0answers
452 views

How to get dynamic intervals in Dundas / Microsoft Chart Controls for WinForms?

Hi, I'm using the Microsoft Chart Controls for .NET 3.5, and struggles with getting the chart control to support window/control resizing. I have graphs where the X value is dates …
1
vote
3answers
372 views

Using “Microsoft Chart Controls for .NET 3.5” for WinForms, how can I mark certain dates with a grid mark and label?

I'm using the Microsoft Chart Controls, and displays data with dates along the X axis and want to have a grid line with a different color on some dates. Let's say I display data …
0
votes
0answers
194 views

Adjusting the number of X intervals in Microsoft Chart Controls

I'm using the Microsoft Chart Controls and databinds it like this: chart1.Series["Default"].Points.DataBindXY(events.Dates, events.Values); //where // events.Dates is IList<Da …