ChartArea3DStyle.IsRightAngleAxes 属性

定义

获取或设置一个标志,该标志确定图表区域是否使用等角投影显示。Gets or sets a flag that determines whether a chart area is displayed using an isometric projection.

public:
 property bool IsRightAngleAxes { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool IsRightAngleAxes { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.IsRightAngleAxes : bool with get, set
Public Property IsRightAngleAxes As Boolean

属性值

Boolean

如果图表区域使用等角投影显示,则为 true;否则,为 falsetrue if the chart area is displayed using an isometric projection; otherwise, false.

属性

注解

等轴视图不是实际的3D,因为旋转显示角度可能与垂直轴和水平轴绕旋转的实际角度不匹配。Isometric views are not actually 3D, because the displayed angles of rotation may not match the actual angles of rotation around the vertical and horizontal axes. 实际角度 Rotation 分别使用和属性来控制 InclinationThe actual angles are controlled using the Rotation and Inclination properties, respectively.

请注意以下有关等轴投影的要点:Note the following points concerning isometric projection:

  • 它不是 "真实" 三维。It is not "real" 3D. 也就是说,绕轴旋转的角度不会使用真正的旋转角度。That is, the angle of rotation around axes doesn't use true rotational angles.

  • 它非常适合用一些深度显示三维图表。It is ideal for displaying 3D charts with some depth.

  • 如果你的应用程序允许最终用户旋转图表,旋转将不会平滑。If your application allows end-users to rotate the charts, the rotation will not be smooth. 在这种情况下,不建议使用等轴视图。In this case, using isometric views is not recommended.

  • 对于等轴投影,不支持透视。With isometric projection, perspective is not supported.

适用于