Search found 58 matches

by mikethelad
Thu Jun 13, 2013 2:27 pm
Forum: .NET
Topic: Line Graph Marks
Replies: 2
Views: 4392

Re: Line Graph Marks

Thanks, this has resolved it
by mikethelad
Thu Jun 13, 2013 10:12 am
Forum: .NET
Topic: Line Graph Marks
Replies: 2
Views: 4392

Line Graph Marks

What would cause the last number on the line graph mark to not show, as per the sample? It does this regardless to number of months of data
by mikethelad
Wed Mar 20, 2013 3:26 pm
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Re: Line next to Y Axis

Thanks, had this set for some reason

WebChart1.Chart.Axes.Left.MinimumOffset = 15;

Assume Bold of the 0 ,100 and - 100 on the scale is not possible
by mikethelad
Wed Mar 20, 2013 9:52 am
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Re: Line next to Y Axis

Great, works see new sample,

Can the X Axis be inline with -100 and not below?
by mikethelad
Tue Mar 19, 2013 3:48 pm
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Re: Line next to Y Axis

Ok that work fine, will have to try work out the issue with my app, as mine is a web app

Can the -100, 0 , 100 on the Y Axis scale be made bold?

Can the X Axis be inline with -100 and not below, I have the following code for the scale


WebChart1.Chart.Axes.Left.SetMinMax(-100, 100);
by mikethelad
Mon Mar 18, 2013 4:38 pm
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Re: Line next to Y Axis

I am using Visual Studio 2008, could that be why?
by mikethelad
Mon Mar 18, 2013 3:16 pm
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Re: Line next to Y Axis

See attached screen shot
by mikethelad
Mon Mar 18, 2013 2:17 pm
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Re: Line next to Y Axis

Thanks, does not like the following line


tChart1.Axes.Custom.Add(axis1);
by mikethelad
Mon Mar 18, 2013 9:25 am
Forum: .NET
Topic: Line next to Y Axis
Replies: 13
Views: 14869

Line next to Y Axis

Have a line graph with a scale of -100 to 100, but require a line at 0, I have added a line but using value of 0, but this needs to be right next to the 0 on the Y-Axis with no gap, but still maintain the gap on the other lines.
by mikethelad
Tue Jan 15, 2013 10:10 am
Forum: .NET
Topic: Export Chart Border
Replies: 5
Views: 7006

Re: Export Chart Border

Yes, your code works with no border but this saving the image to c:\temp I don't want this and want to save to memorystream and load from the memorystream
by mikethelad
Fri Jan 11, 2013 2:07 pm
Forum: .NET
Topic: Export Chart Border
Replies: 5
Views: 7006

Re: Export Chart Border

Cant supply a project as import in the chart into excel via spreadhseer gear plug in code:- System.IO.MemoryStream stream = new System.IO.MemoryStream(); WebChart1.Chart.Export.Image.JPEG.Save(stream); stream.Position = 0; double width = 500; double height = 270; double left = 10; double top = 25; w...
by mikethelad
Fri Jan 04, 2013 3:42 pm
Forum: .NET
Topic: Export Chart Border
Replies: 5
Views: 7006

Export Chart Border

When I am exporting a chart to memorystream and then read it, I am getting a border around the image, any ideas?


System.IO.MemoryStream stream = new System.IO.MemoryStream();
WebChart1.Chart.Export.Image.TIFF.Save(stream);
by mikethelad
Thu Dec 20, 2012 4:58 pm
Forum: .NET
Topic: Chart Export
Replies: 17
Views: 19371

Re: Chart Export

I have managed to trap if hte button is pressed to not do a postback and all seems ok now
by mikethelad
Wed Dec 19, 2012 4:17 pm
Forum: .NET
Topic: Chart Export
Replies: 17
Views: 19371

Re: Chart Export

OK, i made a new project and setup multiple charts one with an export button and all works fine, until I put in the page load

if (Page.IsPostBack) return;


This breaks this, the button causes the page load to be called without this line cuases other system issues
by mikethelad
Wed Dec 19, 2012 3:08 pm
Forum: .NET
Topic: Chart Export
Replies: 17
Views: 19371

Re: Chart Export

Sorry but the project is massive, so unable to send