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;
TPointSeries and Transparency
Re: TPointSeries and Transparency
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.
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TPointSeries and Transparency
Hi Hans,
I'm glad to tell you this has just been fixed for the next maintenance release.
I'm glad to tell you this has just been fixed for the next maintenance release.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |