ChartSheet.Perspective 属性

获取或设置三维 Microsoft.Office.Tools.Excel.ChartSheet 的透视系数。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)

语法

声明
Property Perspective As Integer
    Get
    Set
int Perspective { get; set; }

属性值

类型:System.Int32
三维图表视图的透视系数。必须介于 0 到 100 之间。

备注

如果 RightAngleAxes 属性为 true,则忽略此属性。

示例

下面的代码示例使用 Perspective 属性将当前 Microsoft.Office.Tools.Excel.ChartSheet 的视图透视系数设置为 45 度。 该示例在设置 Perspective 属性之前将 RightAngleAxes 属性设置为 false。

Private Sub AdjustPerspective()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DBarClustered
    Me.RightAngleAxes = False
    Me.Perspective = 45
End Sub
private void AdjustPerspective()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DBarClustered; 

    this.RightAngleAxes = false;
    this.Perspective = 45;
}

.NET Framework 安全性

请参见

参考

ChartSheet 接口

Microsoft.Office.Tools.Excel 命名空间