TiPlotAxis.LabelsFont

TiPlotAxis See Also

Specifies the font attributes of the axis labels.

property LabelsFont : TFont;

Description

Use LabelsFont to change the font attributes of the axis labels. 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].LabelsFont.Name := 'MS Sans Serif';

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

C++ Builder

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

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

Contents | Index | Previous | Next