Hi,
We want to print chart with our company logo.
Any codes we should do before Chart.Printer.Print.
Any suggestions would be appreciated!
Thanks
Fleming
Print Chart Tilte
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Fleming,
Yes, you can do something like that:
Yes, you can do something like that:
Code: Select all
tChart1.Header.Transparent = false;
tChart1.Header.Text = " \n \n ";
tChart1.Header.Image = pictureBox1.Image;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 57
- Joined: Wed Jan 30, 2008 12:00 am
Hello,
How can I adjust the size of the image?
I want to put my image at the top/left corner and text in the center,
is it possible?
Thanks
How can I adjust the size of the image?
I want to put my image at the top/left corner and text in the center,
is it possible?
Thanks
narcis wrote:Hi Fleming,
Yes, you can do something like that:
Code: Select all
tChart1.Header.Transparent = false; tChart1.Header.Text = " \n \n "; tChart1.Header.Image = pictureBox1.Image;
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Fleming,
In that case I recommend you to use an annotation tool for the image and use default header settings for the text.
In that case I recommend you to use an annotation tool for the image and use default header settings for the text.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |