Page 1 of 1

Last point is missing

Posted: Wed Oct 19, 2011 3:13 pm
by 9350556
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
sshot-1.png
sshot-1.png (29.19 KiB) Viewed 4885 times

Re: Last point is missing

Posted: Thu Oct 20, 2011 9:15 am
by yeray
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.

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;
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?

Re: Last point is missing

Posted: Thu Oct 20, 2011 9:43 am
by 9350556
Hello Yeray,

The Delphi XE2 pre-release version 2011.04.41003 solves the problem.

Bert