TdxChartXYDiagramBeforeZoomEventArgs.Axis Property
In This Article
Provides access to the axis by which the target XY diagram is about to be zoomed.
#Declaration
Delphi
property Axis: TdxChartCustomAxis read;
#Property Value
Type | Description |
---|---|
Tdx |
The target axis. You need to cast this property value to the Tdx |
#Remarks
Use the Axis
property to identify and access the target axis of the pending zoom operation. To identify the new minimum and maximum visible axis scale values after the zoom operation, use NewRange.Min and NewRange.Max properties.
To cancel the pending zoom operation, set the Cancel property to True
in an OnBeforeZoom event handler.
See Also