Print Chart Tilte

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Chris.CHWU
Newbie
Newbie
Posts: 57
Joined: Wed Jan 30, 2008 12:00 am

Print Chart Tilte

Post by Chris.CHWU » Wed Jul 02, 2008 7:05 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Jul 02, 2008 8:55 am

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;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Chris.CHWU
Newbie
Newbie
Posts: 57
Joined: Wed Jan 30, 2008 12:00 am

Post by Chris.CHWU » Wed Jul 02, 2008 9:47 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
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;

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Jul 02, 2008 9:52 am

Hi Fleming,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply