Change font of axis and axis title
Change font of axis and axis title
Please tell me how to change left axis size and axis title size in .net?
Re: Change font of axis and axis title
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:
Change Axes Font Size:
I hope will helps.
Thanks,
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;
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 |
Instructions - How to post in this forum |