Pen.mode for series line
Posted: Thu Mar 09, 2017 10:31 am
I set up a series with
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.
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);
...
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.