I see soo many places that fonts are used in a chart, and we are wanting to switch from Arial to Calibri. Is there a quick way to change the fonts on a chart? (It would be nice if there was just a place that allowed me to edit just the fonts for the various objects).
Thanks,
Ed Dressel
Changing the fonts in a chart
Changing the fonts in a chart
Thanks,
Ed Dressel
Ed Dressel
Re: Changing the fonts in a chart
Hello,
You can navigate to the "Chart\General\Fonts" tab in the editor, select "All Fonts" and change the settings:
You can navigate to the "Chart\General\Fonts" tab in the editor, select "All Fonts" and change the settings:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Changing the fonts in a chart
Is the only font associated with series the Marks? Or are there others in some series?
Thanks,
Ed Dressel
Ed Dressel
Re: Changing the fonts in a chart
Hello,
I've been searching TTeeFont in the TeeChart sources to detect instances in Series, other than in the Marks and I found:
CircleLabelsFont in TCustomPolarSeries
Font in TTagCloudSeries
However, if you don't want to miss anyone, you can do something similar to the code that fills the listbox in the "Chart\General\Fonts" editor:
I've been searching TTeeFont in the TeeChart sources to detect instances in Series, other than in the Marks and I found:
CircleLabelsFont in TCustomPolarSeries
Font in TTagCloudSeries
However, if you don't want to miss anyone, you can do something similar to the code that fills the listbox in the "Chart\General\Fonts" editor:
Code: Select all
for t:=0 to AChart.SeriesCount-1 do
begin
tmpTitle:=SeriesTitleOrName(AChart[t],True);
if (not WithFonts) or
Assigned(FontOfPersistent(AChart[t],AChart[t].Marks.Font)) then
AddObject(tmpTitle,AChart[t]);
AddObject(tmpTitle+' ('+TeeMsg_Marks+')',AChart[t].Marks);
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |