Putting a logo in the footer

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
mSchenkel
Newbie
Newbie
Posts: 8
Joined: Fri Feb 08, 2008 12:00 am

Putting a logo in the footer

Post by mSchenkel » Wed Feb 11, 2009 4:48 am

I would like to place a small graphic on the bottom of the TChart component. Can this be done?

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

Post by Yeray » Wed Feb 11, 2009 9:25 am

Hi mSchenkel,

I think you may be looking for something like this:

Code: Select all

  Chart1.Foot.Visible := True;
  Chart1.Foot.Text.Text := '                               ';
  Chart1.Foot.Transparent := False;
  Chart1.Foot.Picture.LoadFromFile('C:\Program Files\Steema Software\TeeChart 8.04 for Delphi 2007\Docs\DocImages\steemalogo.jpg');
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

Post Reply