Click or drag to resize

BoundaryRescaling Enumeration

Denotes what happens with one side of an axis when the data are changed.

Namespace: Altaxo.Graph.Scales.Rescaling
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public enum BoundaryRescaling
Members
Member nameValueDescription
Auto0 Scale this boundary so that the data fits.
Fixed1 This axis boundary is set to a fixed value.
LessOrEqual2 The axis boundary is set to fit the data, but is set not greater than a certain value.
GreaterOrEqual3 The axis boundary is set to fit the data, but is set not lesser than a certain value.
AutoTempFixed4 Use boundary values provided by the user, but only till the next zoom or data change.
FixedManually5 Use boundary values provided by the user, and when zooming, use the new values as if they were user provided. Ignore any data driven boundary changes.
FixedZoomable6 Use boundary values provided by the user. When zooming, keep the user provided values, and when rescaling, set the boundaries back to the user provided values. Ignore any data driven boundary changes.
See Also