Page 1 of 1

Bug in THorizLineSeries

Posted: Wed Oct 06, 2010 6:53 am
by 10046032
Hello,

Under DelphiXE and v.2010 - Drop a TChart component and add a THorizLineSeries. Left Axis inverted and Series.Pointer visible to true.... The 2nd point is not drawn :) I think it has something to do with DrawValuesForward?

Regards

Re: Bug in THorizLineSeries

Posted: Wed Oct 06, 2010 10:16 am
by narcis
Hi johnnix,

I could reproduce the issue using this code:

Code: Select all

uses Series;

procedure TForm1.FormCreate(Sender: TObject);
var Series1: THorizLineSeries;
begin
  Series1:=THorizLineSeries.Create(Self);
  Series1.FillSampleValues;
  Series1.Pointer.Visible:=True;

  Chart1.AddSeries(Series1);
  Chart1.Axes.Left.Inverted:=True;
end;
I have added the bug to the list (TV52015190) to be fixed.

Re: Bug in THorizLineSeries

Posted: Wed Oct 06, 2010 11:46 am
by 10046032
Hello Narcis,

As a registered source code customer is there a way to let me know when and how it is fixed so I can update my sources? I really need a quick fix as it makes the plot look "irregular" :)

Thank you very much for your time

Re: Bug in THorizLineSeries

Posted: Wed Oct 06, 2010 12:52 pm
by narcis
Hi johnnix,

Ok, I have added a note with that information to the bug report

Re: Bug in THorizLineSeries

Posted: Wed Oct 06, 2010 1:02 pm
by 10046032
Hello Narcis,

This is just great :) Great support as always!

Regards

Re: Bug in THorizLineSeries

Posted: Wed Oct 13, 2010 7:37 am
by narcis
Hi johnnix,

This issue has been fixed and I already sent you Series.pas fixing it.

Re: Bug in THorizLineSeries

Posted: Wed Oct 13, 2010 7:45 am
by 10046032
Hello,

Excellent!!! Thank you very much for your support :D

Regards

Re: Bug in THorizLineSeries

Posted: Wed Oct 13, 2010 7:46 am
by narcis
Hi johnnix,

You're very welcome!