Version

Transform3D Property

Changes the perspective used when displaying a 3-D chart.
Syntax
'Declaration
 
Public Property Transform3D As View3DAppearance
public View3DAppearance Transform3D {get; set;}
Remarks

3-D charts can be rotated around their X and Y axes, as well as scaled (moved along the Z axis). The Transform3D property gives you the ability to manipulate the orientation and scaling of the chart to achieve the best perspective on the 3-D data being displayed.

For most charts, there is an optimal range of rotation for X, Y, and Z. This range is as follows:

  • XRotation: 90 to 180
  • YRotation: 0 to 90
  • ZRotation: -90 to 90
Example
'sets the percentage of the chart to shows
UltraChart1.Transform3D.Scale = 80
'sets the angle at which to rotate the Respective axis.
UltraChart1.Transform3D.XRotation = 45
UltraChart1.Transform3D.YRotation = 45
UltraChart1.Transform3D.ZRotation = 45
// sets the percentage of the chart to shows
    UltraChart1.Transform3D.Scale = 80;
    // sets the angle at which to rotate the Respective axis.
    UltraChart1.Transform3D.XRotation = 45;
    UltraChart1.Transform3D.YRotation = 45;
    UltraChart1.Transform3D.ZRotation = 45;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also