TiPlotLimit.YAxisName
TiPlotLimit
Specifies the name of the Y-Axis object used for referencing by the Limit.
property YAxisName : String;
Description
Use YAxisName to get or set the name of the Y-Axis used for referencing. This
property is used by the Line1Position, Line2Position, and AddBandElement properties and methods for positioning the limit line or lines against the
specified Y-Axis.
Example
Delphi
iComponent.Limit[0].YAxisName := 'Y-Axis 1';
iComponent.Limit[0].YAxisName := iComponent.YAxis[0].Name;
C++ Builder
iComponent->Limit[0]->YAxisName = "Y-Axis 1";
iComponent->Limit[0]->YAxisName = iComponent->YAxis[0]->Name;
Contents | Index | Previous | Next