Hiding line pen broken in Build 2013.09.131119
Hiding line pen broken in Build 2013.09.131119
Hello,
we are using TLineSeries in a situation where we decide after the creation of the series if the line should be visible or not.
Until the last build we were able to hide the line by setting Series->LinePen->Visible = false.
Now this setting does not have an affect any more (only the symbol in the legend becomes larger).
Is this a bug or desired behavior?
Thanks in advance for an answer,
regards
Hans
we are using TLineSeries in a situation where we decide after the creation of the series if the line should be visible or not.
Until the last build we were able to hide the line by setting Series->LinePen->Visible = false.
Now this setting does not have an affect any more (only the symbol in the legend becomes larger).
Is this a bug or desired behavior?
Thanks in advance for an answer,
regards
Hans
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Hiding line pen broken in Build 2013.09.131119
Hello Hans,
This looks like a bug. Could you please add it to bugzilla? Doing so you'll be identified as the creator of the issue and therefore notified about its evolution.
Thanks in advance.
This looks like a bug. Could you please add it to bugzilla? Doing so you'll be identified as the creator of the issue and therefore notified about its evolution.
Thanks in advance.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Hiding line pen broken in Build 2013.09.131119
Thanks Hans, confirmed!
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Hiding line pen broken in Build 2013.09.131119
Hello Hans,
Also, as a workaround, you can disable series at Chart -> Series or at run-time setting the Active or Visible properties to false:
Also, as a workaround, you can disable series at Chart -> Series or at run-time setting the Active or Visible properties to false:
Code: Select all
Series1.Active:=False;
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: Hiding line pen broken in Build 2013.09.131119
Hello Narcís,
Regards
Hans
I'm sorry, this won't work because I want to hide the line only, the points should still be visible. It's like switching from TLineSeries to TPointSeries.Narcís wrote: Also, as a workaround, you can disable series at Chart -> Series or at run-time setting the Active or Visible properties to false:Code: Select all
Series1.Active:=False;
Regards
Hans
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Hiding line pen broken in Build 2013.09.131119
Hello Hans,
This has just been fixed. I sent you the unit with the fix.
This has just been fixed. I sent you the unit with the fix.
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 |
-
- Newbie
- Posts: 3
- Joined: Fri Jan 20, 2017 12:00 am
Re: Hiding line pen broken in Build 2013.09.131119
Hi, this seems to be a problem in Delphi 10.1 Berlin, update 2 - TeeChart Pro VCL FMX 2016.19.
Updating (very) old code, and setting LinePen.Visible to False, makes no difference, temporarily I can use .Active - but not as a permanent method.
Updating (very) old code, and setting LinePen.Visible to False, makes no difference, temporarily I can use .Active - but not as a permanent method.
Re: Hiding line pen broken in Build 2013.09.131119
Hello,
As you can see in the comments #486:
Why can't you use Active property at long term?
As you can see in the comments #486:
Is this your situation?David wrote:Automatically forcing the 2D line to paint, is done now only when the series Pointer and DrawArea aren't painted.
Why can't you use Active property at long term?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |