WaterMarks

TeeChart FireMonkey (Windows,OSX,iOS & Android) for Embarcadero RAD Studio, Delphi and C++ Builder (XE5+)
Post Reply
realsol
Newbie
Newbie
Posts: 70
Joined: Mon Feb 27, 2017 12:00 am

WaterMarks

Post by realsol » Mon Dec 04, 2017 9:54 pm

Is it possible to put a watermark on the chart? I tried the background image, but the chart prints above it. I am running version

Also, when I try to clear the backimage, I get the following error:
Attachments
2017-12-04_1412.png
2017-12-04_1412.png (15.61 KiB) Viewed 11101 times
2017-12-04_1408.png
2017-12-04_1408.png (5.79 KiB) Viewed 11102 times
Last edited by realsol on Mon Dec 04, 2017 10:11 pm, edited 1 time in total.

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

Re: WaterMarks

Post by Yeray » Tue Dec 05, 2017 9:16 am

Hello,

Try using a TRectangleTool. Ie:

Code: Select all

  with Chart1.Tools.Add(TRectangleTool) as TRectangleTool do
  begin
    Shape.Picture.LoadFromFile('C:\tmp\watermark.jpg');
    Shape.Transparency:=0;
    Left:=100;
    Top:=100;
    Shape.Width:=200;
    Shape.Height:=200;
  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

Post Reply