Page 1 of 1

Legend Box Background

Posted: Thu Aug 31, 2017 9:28 am
by Erlenwiese
Our charts all have a white background.
When I add a legend box, it always has a dark background that doesn't look good in that case.

Is it possible to change the background color of a legend box? I didn't find a background color property.

------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------

Re: Legend Box Background

Posted: Thu Aug 31, 2017 11:20 am
by ArctionKestutis
Hello,

You need to modify Fill property tree of LegendBox. If don't want any fill (i.e. transparent) just set

Code: Select all

Fill.Style = None;
Otherwise set Fill.Color, Fill.Gradient etc. Even bitmap fill is possible.

All the best.

Re: Legend Box Background

Posted: Thu Aug 31, 2017 12:08 pm
by Erlenwiese
That has helped me :) . Thank's a lot.