windowsforms-devexpress-dot-xtracharts-dot-designer-dot-diagram3dmodel-ccba2598.md
Gets or sets the value of the Diagram3D.RotationOrder within the model.
Namespace : DevExpress.XtraCharts.Designer
Assembly : DevExpress.XtraCharts.v25.2.Wizard.dll
NuGet Package : DevExpress.Win.Charts
[LocalizableCategory(DesignerCategories.Behavior)]
public RotationOrder RotationOrder { get; set; }
<LocalizableCategory(DesignerCategories.Behavior)>
Public Property RotationOrder As RotationOrder
| Type | Description |
|---|---|
| RotationOrder |
The order of applying rotations over different axes.
|
Available values:
| Name | Description |
|---|---|
| XYZ |
The chart is first rotated around the X-axis by the Diagram3D.RotationAngleX value, then around the Y-axis by the Diagram3D.RotationAngleY value, and then around the Z-axis by the Diagram3D.RotationAngleZ value.
| | XZY |
The chart is first rotated around the X-axis by the Diagram3D.RotationAngleX value, then around the Z-axis by the Diagram3D.RotationAngleZ value, and then around the Y-axis by the Diagram3D.RotationAngleY value.
| | YXZ |
The chart is first rotated around the Y-axis by the Diagram3D.RotationAngleY value, then around the X-axis by the Diagram3D.RotationAngleX value, and then around the Z-axis by the Diagram3D.RotationAngleZ value.
| | YZX |
The chart is first rotated around the Y-axis by the Diagram3D.RotationAngleY value, then around the Z-axis by the Diagram3D.RotationAngleZ value, and then around the X-axis by the Diagram3D.RotationAngleX value.
| | ZXY |
The chart is first rotated around the Z-axis by the Diagram3D.RotationAngleZ value, then around the X-axis by the Diagram3D.RotationAngleX value, and then around the Y-axis by the Diagram3D.RotationAngleY value.
| | ZYX |
The chart is first rotated around the Z-axis by the Diagram3D.RotationAngleZ value, then around the Y-axis by the Diagram3D.RotationAngleY value, and then around the X-axis by the Diagram3D.RotationAngleX value.
|
See Also