Change font of axis and axis title

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Suhas
Newbie
Newbie
Posts: 2
Joined: Tue Feb 19, 2008 12:00 am

Change font of axis and axis title

Post by Suhas » Wed Nov 18, 2009 7:51 am

Please tell me how to change left axis size and axis title size in .net?

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

Re: Change font of axis and axis title

Post by Sandra » Wed Nov 18, 2009 11:46 am

Hello Suhas,

If you want change size font axis and size title axes you have used propriety Font.Size. Please, see next lines of code as example:

Change Title Font Size:

Code: Select all

            tChart1.Axes.Left.Title.Visible = true;
            tChart1.Axes.Left.Title.Font.Size = 16;
Change Axes Font Size:

Code: Select all

       tChart1.Axes.Left.Labels.Font.Size = 15;

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