Skip to main content
A newer version of this page is available. .

Diagram3DModel.RotationOrder Property

Gets or sets the value of the Diagram3D.RotationOrder within the model.

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v18.2.Wizard.dll

Declaration

[LocalizableCategory(DesignerCategories.Behavior)]
public RotationOrder RotationOrder { get; set; }

Property Value

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