TiPlotAxis.Max

TiPlotAxis See Also

Indicates the maximum value that will be display on the axis.

property Max : Double;

Description

Use Max to get the maximum value that will be display on the axis. This is a read-only property, to change, set the Min and or Span property.

Example

Delphi

Value := iComponent.XAxis[0].Max;

Value := iComponent.YAxis[0].Max;

C++ Builder

Value = iComponent->XAxis[0]->Max;

Value = iComponent->YAxis[0]->Max;

Note: This property is Read-Only

Contents | Index | Previous | Next