TiPlotAxis.Title
TiPlotAxis See Also
Specifies the title text for the axis.
property Title : String;
Description
Use Title to get or set the title text for the axis. To hide the title, use
the TitleShow property.
Example
Delphi
iComponent.XAxis[0].Title := 'X-Axis 1';
iComponent.YAxis[0].Title := 'X-Axis 1';
C++ Builder
iComponent->XAxis[0]->Title = "X-Axis 1";
iComponent->YAxis[0]->Title = "X-Axis 1";
Contents | Index | Previous | Next