Page 1 of 1

Legend items alignment

Posted: Fri Feb 27, 2004 9:03 am
by 8123134
Hi!

If I set the Legend position to top, the items shown in the legend
becomes horizontally aligned. Hoe do I get them to be vertically
aligned (as they are when they are placed left or right of the chart)?

Regards
/Jakob

Posted: Fri Feb 27, 2004 9:53 am
by Pep
Hi Jakob,

I think the only way around this is to set the Legend position to a custom position and increase the Top Margin, something like :

Code: Select all

tChart1.Header.Visible = false;
tChart1.Legend.CustomPosition = true;
tChart1.Legend.Top = 5;
tChart1.Legend.Left = tChart1.Width/2;
tChart1.Panel.MarginTop = 30;