Search found 8 matches

by Jon
Thu Jul 13, 2006 2:18 pm
Forum: .NET
Topic: Crash when rotating surface chart, axis labels illegible
Replies: 1
Views: 3162

Crash when rotating surface chart, axis labels illegible

Hello- I have a surface chart with a rotate tool. At runtime, if I quickly rotate the chart, it crashes with the error: "An unhandled exception of type 'System.InvalidOperationException' occurred in system.drawing.dll". Any thoughts? Also, when I resize the chart or rotate it, some of the axis label...
by Jon
Wed Jul 12, 2006 3:56 pm
Forum: .NET
Topic: unable to adjust axis title position, also 360 rotate?
Replies: 2
Views: 4166

Narcis-
Thank you for the quick reply. Adjusting the label size added space padding between the labels and the axis titles-- thanks! I took a look at the openGL demo and am looking forward to taking advantage of it. Many thanks, Jon
by Jon
Wed Jul 12, 2006 2:21 pm
Forum: .NET
Topic: unable to adjust axis title position, also 360 rotate?
Replies: 2
Views: 4166

unable to adjust axis title position, also 360 rotate?

I am unable to change the position of axis titles on my 3D surface chart. I need to have more space between the axis titles and the labels since their text overlaps a bit. I have tried to add custom text to title the axis, but this text does not rotate with the chart. Also, I was under the impressio...
by Jon
Thu Feb 24, 2005 7:30 pm
Forum: .NET
Topic: Discontinuous DateTime X axis points
Replies: 3
Views: 6361

this solution is not satisfactory as if i have 2 series sharing an axis, their numbers wont match up if their 'off' times do not match. any other ideas? ideally, i could just add points and tell the axis to not use the mandatory axis to not use the values to position, but to use the order they were ...
by Jon
Wed Feb 23, 2005 4:32 pm
Forum: .NET
Topic: axis title color not working
Replies: 2
Views: 4948

replying to my own message.. it seems that doing this does what i want:

this.tChart1.Axes.Left.Title.Font.Color = Color.Red;

but, what does Title.Color do then?
by Jon
Wed Feb 23, 2005 4:27 pm
Forum: .NET
Topic: axis title color not working
Replies: 2
Views: 4948

axis title color not working

this.tChart1.Axes.Left.Title.Color = Color.Red;

It didnt work in my own program, and I also modified one of the examples and added this.. it doesnt seem to work at all.
by Jon
Wed Jan 19, 2005 4:19 pm
Forum: .NET
Topic: Discontinuous DateTime X axis points
Replies: 3
Views: 6361

just to verify my understanding of the code...

what is done here is you turn off dates, and then you add the X values as consecutive ints, and just relabel the points at the bottom to be the dates that are relevant.
by Jon
Tue Jan 18, 2005 11:09 pm
Forum: .NET
Topic: Discontinuous DateTime X axis points
Replies: 3
Views: 6361

Discontinuous DateTime X axis points

I have points from 10am to 12pm, and then 2pm to 4pm, and also some whole days are missing (weekends, holidays, some others). Right now, every day I get a long line from 12pm to 2pm. What I'd like to see is 2pm right next to 12pm, as if time just suddenly went from 12:00pm to 2:00pm. I am using the ...