Page 1 of 1

WaterMarks

Posted: Mon Dec 04, 2017 9:54 pm
by 16880166
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:

Re: WaterMarks

Posted: Tue Dec 05, 2017 9:16 am
by yeray
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;