TiPlotAxis.ReverseScale

TiPlotAxis See Also

Specifies whether the scale is reversed.

property ReverseScale : Boolean;

Description

Use ReverseScale to specify whether the scale is reversed. If ReverseScale is False, the axis goes from left to right for horizontal orientation or bottom to top for vertical orientation. If ReverseScale is True, the axis goes from right to left for horizontal orientation, or top to bottom for vertical orientation.

Example

Delphi

iComponent.XAxis[0].ReverseScale := True;

iComponent.YAxis[0].ReverseScale := True;

C++ Builder

iComponent->XAxis[0]->ReverseScale = True;

iComponent->YAxis[0]->ReverseScale = True;

Contents | Index | Previous | Next