Click or drag to resize

FloatingScaleSpanType Enumeration

Enumerates the kind of span that determines the length of the floating scale.

Namespace: Altaxo.Graph.Gdi.Shapes
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public enum FloatingScaleSpanType
Members
Member nameValueDescription
IsLogicalValue0 The span value is a logical value. This is the ratio corresponding to the length of the underlying scale. Thus, a value of 0.5 means half the length of the underlying scale.
IsPhysicalEndOrgDifference1 The span value is a physical value, and is given as difference of end and org of the floating scale. Thus, if the span value is for example 3 and the org of the floating scale is 2, then the end of the floating scale will be 2 + 3 = 5.
IsPhysicalEndOrgRatio2 The span value is a physical value, and is given as ratio of end to org of the floating scale. Thus, if the span value is for example 3 and the org of the floating scale is 2, then the end of the floating scale will be 2 * 3 =6.
See Also