bug report - I need to make THighLow series semitransparent

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
MOGAMOGA
Newbie
Newbie
Posts: 2
Joined: Thu May 31, 2018 12:00 am

bug report - I need to make THighLow series semitransparent

Post by MOGAMOGA » Fri Sep 07, 2018 3:23 pm

I attach an image which shows how the TChart looks at design time and how it looks like at run time.
So, how to make THighLow series semitransparent?
Attachments
Bug Report 2b.PNG
Bug Report 2b.PNG (47.53 KiB) Viewed 5581 times

Yeray
Site Admin
Site Admin
Posts: 9533
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: bug report - I need to make THighLow series semitransparent

Post by Yeray » Wed Sep 12, 2018 7:46 am

Hello,

You can set it by code as follows:

Code: Select all

  Series1.HighBrush.Color:=TTeeCanvasClass.ColorFrom(clRed,50);
  Series1.LowBrush.Color:=TTeeCanvasClass.ColorFrom(clGreen,50);
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply