Click or drag to resize

BarShiftStrategy3D Enumeration

Designates how to shift the bars that belong to a group, that is, bars that have the same independent variables x and y.

Namespace: Altaxo.Graph.Plot.Groups
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum BarShiftStrategy3D
Members
Member nameValueDescription
ManualFirstXThenY0Shift the bars first in x-direction from left to right. If the user defined maximum number of bars in x-direction is reached, the bars are shifted in y-direction from front to back.
ManualFirstYThenX1Shift the bars first in y-direction from front to back. If the user defined maximum number of bars in y-direction is reached, the bars are shifted in x-direction from left to right.
UniformFirstXThenY2Try to make the number of bars in x and y direction the same (square root of the total number). Shift the bars first in x-direction from left to right. If the destination number of bars in x-direction is reached, the bars are shifted in y-direction from front to back.
UniformFirstYThenX3Try to make the number of bars in x and y direction the same (square root of the total number). Shift the bars first in y-direction from front to back. If the destination number of bars in y-direction is reached, the bars are shifted in x-direction from left to right.

The BarShiftStrategy3D type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also