Page 1 of 1

Marks not in the frame

Posted: Fri Mar 06, 2009 2:17 pm
by 10050873
Hello,

When i create a pie and i active the marks here is what i obtain

http://www.cijoint.fr/cjlink.php?file=c ... f38qeA.jpg

we can see that the mark on the left is not entire

How could i solve it?

Thanks

Regards

Posted: Fri Mar 06, 2009 2:31 pm
by yeray
Hi Calou,

Have you tried to add some left margin? For example:

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.MarginUnits := muPixels;
  Chart1.MarginLeft := 20;
end;

Posted: Fri Mar 06, 2009 2:49 pm
by 10050873
good :)

thanks