TPointSeries and Transparency

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Friis
Newbie
Newbie
Posts: 23
Joined: Mon May 07, 2012 12:00 am

TPointSeries and Transparency

Post by Friis » Mon Jul 02, 2012 11:11 am

Hi, I would like to make some red circles where the "inter content" is transparent (accordingly, I'm using style := bsClear) - However, When I'm using the code below the inner content becomes blue? How Can I avoid that?


Chart1.FreeAllSeries();
Chart1.RemoveAllSeries;
Chart1.View3D := false;

Chart1.AddSeries(TPointSeries.Create(self));
Chart1[Chart1.SeriesCount-1].ParentChart := Chart1;
Chart1[Chart1.SeriesCount-1].FillSampleValues(10);

with Chart1[Chart1.SeriesCount-1] as TpointSeries do
with Pointer do
begin
Style:=psCircle;
HorizSize:=8;
VertSize:=8;
Brush.Style:=bsClear;
Pen.Color:=clPurple;
Pen.Width:=2;
end;

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

Re: TPointSeries and Transparency

Post by Yeray » Mon Jul 02, 2012 1:24 pm

Hi Hans,

You are right. I could reproduce it with v2012.05 and v2012.06 so I've added it to the defect list to be fixed asap (TV52016237).
Thanks for reporting it.
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

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

Re: TPointSeries and Transparency

Post by Yeray » Wed Jan 23, 2013 10:32 am

Hi Hans,

I'm glad to tell you this has just been fixed for the next maintenance release.
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