Bug in THorizLineSeries

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
johnnix
Advanced
Posts: 192
Joined: Tue Jul 10, 2007 12:00 am

Bug in THorizLineSeries

Post by johnnix » Wed Oct 06, 2010 6:53 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Bug in THorizLineSeries

Post by Narcís » Wed Oct 06, 2010 10:16 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

johnnix
Advanced
Posts: 192
Joined: Tue Jul 10, 2007 12:00 am

Re: Bug in THorizLineSeries

Post by johnnix » Wed Oct 06, 2010 11:46 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Bug in THorizLineSeries

Post by Narcís » Wed Oct 06, 2010 12:52 pm

Hi johnnix,

Ok, I have added a note with that information to the bug report
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

johnnix
Advanced
Posts: 192
Joined: Tue Jul 10, 2007 12:00 am

Re: Bug in THorizLineSeries

Post by johnnix » Wed Oct 06, 2010 1:02 pm

Hello Narcis,

This is just great :) Great support as always!

Regards

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Bug in THorizLineSeries

Post by Narcís » Wed Oct 13, 2010 7:37 am

Hi johnnix,

This issue has been fixed and I already sent you Series.pas fixing it.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

johnnix
Advanced
Posts: 192
Joined: Tue Jul 10, 2007 12:00 am

Re: Bug in THorizLineSeries

Post by johnnix » Wed Oct 13, 2010 7:45 am

Hello,

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

Regards

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Bug in THorizLineSeries

Post by Narcís » Wed Oct 13, 2010 7:46 am

Hi johnnix,

You're very welcome!
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply