Printing custom text

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
jerome
Newbie
Newbie
Posts: 1
Joined: Thu Oct 13, 2011 12:00 am

Printing custom text

Post by jerome » Mon Oct 31, 2011 10:53 pm

Hi,

I am able to print a couple of dynamically created tchart xy plots on one page, but I need to add header and footer information on the printout ( I am using 4.1.2011.4192 .NET component) and so far I did not find a suitable example nor did I find a way to do this. What is the best source of information?

Jerome

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Printing custom text

Post by Sandra » Wed Nov 02, 2011 2:46 pm

Hello Jerome,

If you want see the Header and the Footer of Charts, you must change the property Footer.Visible or Header.visible to true, as do in next lines of code:

Code: Select all

            tChart1.Header.Visible = true;
                tChart1.Header.Text = "TeeChart2011";
                tChart1.Footer.Visible = true;
                tChart1.Footer.Text = "Wendesday, 2 of November";
Can you please, tell us if previous works as you expected?

I hope will helps.

Thanks,
Best Regards,
Sandra Pazos / 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