'宣言 Public Property Transform3D As View3DAppearance
public View3DAppearance Transform3D {get; set;}
立体チャートは、X 軸と Y 軸を中心に回転したり、スケールする(Z 軸に沿って移動する)ことができます。Transform3D プロパティにより、チャートの向きとスケールを操作し、表示する 3D データ上に最適な視点を実現できます。
大部分のチャートでは、X、Y、Z の最適範囲があります。この範囲は以下のとおりです。
'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;