Search found 4 matches

by eidola
Mon Nov 14, 2011 6:57 am
Forum: .NET
Topic: Chart Not Responding Problem
Replies: 4
Views: 3859

Re: Chart Not Responding Problem

Hello, Sandra, could you please advise when I can expect the next release? As this is a quite urgent issue for me. Thanks!
by eidola
Fri Nov 11, 2011 8:37 am
Forum: .NET
Topic: Chart Not Responding Problem
Replies: 4
Views: 3859

Chart Not Responding Problem

Hi, I met a hanging problem when I try to manipulate axis ranges manually. I can reproduce the problem by using the following code. private void InitializeChart() { tChart1.Aspect.View3D = false; tChart1.Axes.Left.Automatic = false; tChart1.Axes.Left.Maximum = 2E304; tChart1.Axes.Left.Minimum = 0; t...
by eidola
Wed Nov 09, 2011 1:17 am
Forum: .NET
Topic: Overlapped Axis Labels in Log Scale
Replies: 3
Views: 3720

Re: Overlapped Axis Labels in Log Scale

Hi, Sandra, First of all, thanks for your reply. Actually I expect something else. I noticed the data range on Y axis has been changed in your sample. But unfortunately for my case, the data range is from 0 ~ 1E+303. If I set back the data range, you sample code result will be like this: [img]Screen...
by eidola
Tue Nov 08, 2011 6:56 am
Forum: .NET
Topic: Overlapped Axis Labels in Log Scale
Replies: 3
Views: 3720

Overlapped Axis Labels in Log Scale

Hi, there. I got a problem with the following code: Line line = new Line(); double max = 1E303; tChart1.Axes.Left.Automatic = false; tChart1.Axes.Left.Minimum = 0; tChart1.Axes.Left.Maximum = max; tChart1.Axes.Left.Logarithmic = true; tChart1.Axes.Left.LogarithmicBase = 10; tChart1.Axes.Left.Labels....