3D charts are based on a 3D graphics engine which supports scaling and rotation. The following properties control these 3D transforms:
UltraChart.Transform3D.Scale : The scale of magnification. Increasing the value of this property effectively zooms in on the center of the chart, while decreasing the value zooms out.
UltraChart.Transform3D.XRotation : Rotation along the x-axis.
UltraChart.Transform3D.YRotation :Rotation along the y-axis.
UltraChart.Transform3D.ZRotation : Rotation along the z-axis.
Additionally, in WinChart™ the end user can scale the chart by holding down the ALT key and rolling the mouse wheel, or rotate the chart by holding down the ALT key and moving the mouse. endif::win-forms-old,win-forms[]The following code demonstrates how to rotate the x-axis.
In Visual Basic:
Me.UltraChart1.Transform3D.XRotation += 30
In C#:
this.ultraChart1.Transform3D.XRotation += 30;