BoundariesRelativeTo Enumeration |
Designates what the user provided boundaries represent.
Namespace: Altaxo.Graph.Scales.RescalingAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public enum BoundariesRelativeTo
Members Member name | Value | Description |
---|
Absolute | 0 |
User provided boundary value is absolute.
|
RelativeToDataBoundsOrg | 1 |
User provided boundary is an offset relative to the origin of the data bounds.
Example: the user provided value is 200, the origin of the data bounds is 1000, thus the resulting boundary value is 1200.
|
RelativeToDataBoundsEnd | 2 |
User provided boundary is an offset relative to the end of the data bounds
Example: the user provided value is 200, the end of the data bounds is 2000, thus the resulting boundary value is 2200.
|
RelativeToDataBoundsMean | 3 |
User provided boundary is an offset relative to the mean of the data bounds. Interpretation of 'mean' depends on the scale: it is the physical value at that point on the scale where the logical value is 0.5.
Thus on a linear scale it is the arithmetic mean of org and end.
Example: on a linear scale the user provided value is 200, the org of the data bounds is 1000, the end of the data bounds is 2000, thus the resulting boundary value is 1500 + 200 = 1700.
|
See Also