Diagram3D.RotationOrder Property
Gets or sets a value which determines the order of rotation around the X, Y and Z axes.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public RotationOrder RotationOrder { get; set; }
#Property Value
Type | Description |
---|---|
Rotation |
A Rotation |
Available values:
Name | Description |
---|---|
XYZ | The chart is first rotated around the X-axis by the Diagram3D. |
XZY | The chart is first rotated around the X-axis by the Diagram3D. |
YXZ | The chart is first rotated around the Y-axis by the Diagram3D. |
YZX | The chart is first rotated around the Y-axis by the Diagram3D. |
ZXY | The chart is first rotated around the Z-axis by the Diagram3D. |
ZYX | The chart is first rotated around the Z-axis by the Diagram3D. |
#Remarks
Note that the RotationOrder property can be used only if the Diagram3D.RotationType property is set to RotationType.UseAngles. If the Diagram3D.RotationType property is set to RotationType.UseMouseStandard or RotationType.UseMouseAdvanced, then the RotationOrder property value is undefined and can’t be used.