Marks not in the frame

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

Marks not in the frame

Post by Calou » Fri Mar 06, 2009 2:17 pm

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Post by Yeray » Fri Mar 06, 2009 2:31 pm

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;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

Post by Calou » Fri Mar 06, 2009 2:49 pm

good :)

thanks

Post Reply