Click or drag to resize

BarShiftStrategy3D Enumeration

Designates how to shift the bars that belong to a group (i.e. have the same independent variables x and y).

Namespace: Altaxo.Graph.Plot.Groups
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.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.
See Also