Page 1 of 1

Legend location

Posted: Sun Mar 20, 2011 10:59 am
by 16857407
Hello
Is there a way to put legends directly on the charts ?
Thanks

Re: Legend location

Posted: Mon Mar 21, 2011 8:10 am
by yeray
Hi marinav,

To move the legend?
You can use predefined locations:

Code: Select all

Chart1.Legend.Alignment:=laBottom;//laTop//laRight//laLeft
Or a custom position:

Code: Select all

  Chart1.Legend.CustomPosition:=true;
  Chart1.Legend.Left:=50;
  Chart1.Legend.Top:=100;