FONT & COLOR of one spe. ITEM does not work in new version !

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
walter0316
Newbie
Newbie
Posts: 37
Joined: Mon Jul 13, 2015 12:00 am

FONT & COLOR of one spe. ITEM does not work in new version !

Post by walter0316 » Wed Jul 29, 2015 6:28 pm

Hi,
this works fine in version 7.07

Code: Select all

        
Form5TC.Chart1.Axes.Left.Items[i].Font.Color:=clBlack;
Form5TC.Chart1.Axes.Left.Items[i].Font.Name:='Courier';
But in the latest Version the FONT Property is not known.
WHat to do, please?
THANKS

walter0316
Newbie
Newbie
Posts: 37
Joined: Mon Jul 13, 2015 12:00 am

Re: FONT & COLOR of one spe. ITEM does not work in new version !

Post by walter0316 » Wed Jul 29, 2015 7:25 pm

found it!

.FORMAT.FONT must be used. right? :D

Code: Select all

        
Form5TC.Chart1.Axes.Left.Items[i].Format.Font.Color:=clBlack;
Form5TC.Chart1.Axes.Left.Items[i].Format.Font.Name:='Courier';

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: FONT & COLOR of one spe. ITEM does not work in new version !

Post by Narcís » Thu Jul 30, 2015 7:40 am

Hi Walter,

Yes, exactly.
Best Regards,
Narcís Calvet / 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