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:
WaterMarks
WaterMarks
- Attachments
-
- 2017-12-04_1412.png (15.61 KiB) Viewed 12764 times
-
- 2017-12-04_1408.png (5.79 KiB) Viewed 12765 times
Last edited by realsol on Mon Dec 04, 2017 10:11 pm, edited 1 time in total.
Re: WaterMarks
Hello,
Try using a TRectangleTool. Ie:
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |