バージョン

Transform3D プロパティ

立体チャートを表示する際の視点を変更します。
シンタックス
'宣言
 
Public Property Transform3D As View3DAppearance
public View3DAppearance Transform3D {get; set;}
解説

立体チャートは、X 軸と Y 軸を中心に回転したり、スケールする(Z 軸に沿って移動する)ことができます。Transform3D プロパティにより、チャートの向きとスケールを操作し、表示する 3D データ上に最適な視点を実現できます。

大部分のチャートでは、X、Y、Z の最適範囲があります。この範囲は以下のとおりです。

  • XRotation: 90 から 180
  • YRotation: 0 から 90
  • ZRotation: -90 から 90
使用例
'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;
参照