corelibraries-devexpress-dot-xtracharts-7defb8db.md
Specifies the order the AngleX , AngleY and AngleZ values are applied to rotate the 3D chart diagram.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum RotationOrder
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum RotationOrder
| 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.
|
The following properties accept/return RotationOrder values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | Diagram3D.RotationOrder |
| WinForms Controls | Diagram3DModel.RotationOrder |
The RotationOrder enumeration’s values are returned by the Diagram3D.RotationOrder property of a Diagram3D object. Note, that Diagram3D objects are returned by the ChartControl.Diagram property if it currently shows a series of 3D types.
See Also