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
Bug in THorizLineSeries
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Bug in THorizLineSeries
Hi johnnix,
I could reproduce the issue using this code:
I have added the bug to the list (TV52015190) to be fixed.
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;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Bug in THorizLineSeries
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
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
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Bug in THorizLineSeries
Hi johnnix,
Ok, I have added a note with that information to the bug report
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 |
Instructions - How to post in this forum |
Re: Bug in THorizLineSeries
Hello Narcis,
This is just great Great support as always!
Regards
This is just great Great support as always!
Regards
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Bug in THorizLineSeries
Hi johnnix,
This issue has been fixed and I already sent you Series.pas fixing it.
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 |
Instructions - How to post in this forum |
Re: Bug in THorizLineSeries
Hello,
Excellent!!! Thank you very much for your support
Regards
Excellent!!! Thank you very much for your support
Regards
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Bug in THorizLineSeries
Hi johnnix,
You're very welcome!
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 |
Instructions - How to post in this forum |