Pen.mode for series line

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
Peter Carr
Newbie
Newbie
Posts: 5
Joined: Tue Nov 08, 2016 12:00 am

Pen.mode for series line

Post by Peter Carr » Thu Mar 09, 2017 10:31 am

I set up a series with

Code: Select all

ASeries := TLineSeries.Create(Form1);
with ASeries do
begin
   SeriesColor:= claSilver;
   LinePen.Mode:=pmXOR;
end;
Chart1.AddSeries(ASeries);
// Then add some points with
ASeries.AddXY(x, y);
...
The line setting the pen mode appears to have no effect. Where am I going wrong?

I have some colored shapes behind the series created in the OnBeforeDrawSeries event and I am trying to set a series line color that will be visible for any color behind.

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

Re: Pen.mode for series line

Post by Yeray » Fri Mar 10, 2017 10:58 am

Hello,

I've just added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=1816

Feel free to add your mail to the CC list to be automatically notified when an update arrives.
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