Hi
Is there any way I can change the default font. I want everything to be Arial - labels, legend ,title , Marks etc.
I know how to change each one individually but is there a way I can do the change in one place so that by default all chart fonts (Labels, symbols Marks etc) will be created with the Arial font.
Where are the default fonts taken from ?
Thanks.
Default Font question
Hello gcrnd,
For the moment is not possible to change the default font for all elements of chart at once. But, you can change, font of labels, legend, title, Marks etc. individually, for all elements using property Font.Name="name of font", for example:
Also, I have added your request to the wish-list to be considered for inclusion in future releases.
Thanks,
For the moment is not possible to change the default font for all elements of chart at once. But, you can change, font of labels, legend, title, Marks etc. individually, for all elements using property Font.Name="name of font", for example:
Code: Select all
box1.Marks.Font.Name = "Times New Roman";
tChart1.Legend.Font.Name = "Times New Roman";
tChart1.Header.Font.Name = "Times New Roman";
Also, I have added your request to the wish-list to be considered for inclusion in future releases.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Default Font question
Hi qcrnd,
As an update, you can already do that using DefaultFontName property, for example:
As an update, you can already do that using DefaultFontName property, for example:
Code: Select all
Steema.TeeChart.Texts.DefaultFontName = "Arial";
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 |