Strange behavior of ErrorSeries with log axis
Posted: Sat Mar 03, 2007 11:36 am
Hello,
I created a simple chart, added an ErrorSeries and filled it with some values:
Thats what it is looking like after that.
Okay, no problem here.
But if I press button2,
this is, what I will get.
Could anyone explain to me, why suddenly the values are so huge?
Regards
I created a simple chart, added an ErrorSeries and filled it with some values:
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
var
lauf: Integer;
begin
for lauf := 10 to 100 do
begin
Series1.AddErrorBar(lauf, lauf, 0.2);
end;
end;
Okay, no problem here.
But if I press button2,
Code: Select all
procedure TForm1.Button2Click(Sender: TObject);
begin
Chart1.LeftAxis.Logarithmic := not Chart1.LeftAxis.Logarithmic;
end;
Could anyone explain to me, why suddenly the values are so huge?
Regards