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.GroupsAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic enum BarShiftStrategy3D
Members| Member name | Value | Description | 
|---|
| ManualFirstXThenY | 0 | Shift 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. | 
| ManualFirstYThenX | 1 | Shift 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. | 
| UniformFirstXThenY | 2 | Try 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. | 
| UniformFirstYThenX | 3 | Try 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