TiPlotAxis.TitleFont

TiPlotAxis See Also

Specifies the font attributes of the axis title.

property TitleFont : TFont;

Description

Use TitleFont to change the font attributes of the axis title. To change to a new font, specify a new TFontobject. To modify a font, change the value of the Color, Height, Name, Pitch, Size, or Style of the TFontobject.

Example

Delphi

iComponent.XAxis[0].TitleFont.Name := 'MS Sans Serif';

iComponent.YAxis[0].TitleFont.Name := 'MS Sans Serif';

C++ Builder

iComponent->XAxis[0]->TitleFont->Name = "MS Sans Serif";

iComponent->YAxis[0]->TitleFont->Name = "MS Sans Serif";

Contents | Index | Previous | Next