Chart Not Responding Problem
Posted: Fri Nov 11, 2011 8:37 am
Hi,
I met a hanging problem when I try to manipulate axis ranges manually. I can reproduce the problem by using the following code.
Could you please help to figure out what was wrong? Thank you. FYI, if I set maximum to 1E304 the problem will be gone.
I met a hanging problem when I try to manipulate axis ranges manually. I can reproduce the problem by using the following code.
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
tChart1.Axes.Left.Automatic = false;
tChart1.Axes.Left.Maximum = 2E304;
tChart1.Axes.Left.Minimum = 0;
tChart1.Axes.Left.Logarithmic = true;
tChart1.Axes.Left.LogarithmicBase = 10;
tChart1.Axes.Left.Labels.ValueFormat = "0.00#E+00";
Points points = new Points();
points.Add(10.0, 10.0);
tChart1.Series.Add(points);
}