Hello,
If I set TLineSeries.Pointer.Visible to True, the last point of the serie is missing.
The bug has been introduced by version 2011.03.32815 as far as I can see.
The Tee9new demo application (dated 16-11-2010) is okay.
Regards,
Bert
Last point is missing
Re: Last point is missing
Hello Bert,
I've checked it with the code below both with v2011.03.30407 and the actual sources, and I haven't been able to reproduce the problem here.
Does the code above reproduce the problem for you? If not, could you please send us this simple application so we can reproduce it here?
I've checked it with the code below both with v2011.03.30407 and the actual sources, and I haven't been able to reproduce the problem here.
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.Legend.Visible:=false;
with Chart1.AddSeries(TLineSeries) as TLineSeries do
begin
FillSampleValues(4);
Pointer.Visible:=true;
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Last point is missing
Hello Yeray,
The Delphi XE2 pre-release version 2011.04.41003 solves the problem.
Bert
The Delphi XE2 pre-release version 2011.04.41003 solves the problem.
Bert