Back to Devexpress

RotationOrder Enum

corelibraries-devexpress-dot-xtracharts-7defb8db.md

latest4.4 KB
Original Source

RotationOrder Enum

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

Declaration

csharp
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum RotationOrder
vb
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum RotationOrder

Members

NameDescription
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:

LibraryRelated API Members
Cross-Platform Class LibraryDiagram3D.RotationOrder
WinForms ControlsDiagram3DModel.RotationOrder

Remarks

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

RotationOrder

DevExpress.XtraCharts Namespace