Condividi tramite


Proprietà ChartSheet.DepthPercent

Ottiene o imposta la profondità di un grafico 3D, espressa in percentuale rispetto alla larghezza dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)

Sintassi

'Dichiarazione
Property DepthPercent As Integer
    Get
    Set
int DepthPercent { get; set; }

Valore proprietà

Tipo: System.Int32
Profondità di un grafico 3D, espressa in percentuale rispetto alla larghezza dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet (valore compreso tra 20 e 2000%)

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà DepthPercent per impostare la profondità della porzione 3D dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet corrente sul 75% della larghezza dell'oggetto Microsoft.Office.Tools.Excel.ChartSheet.

Private Sub AdjustDepth()
    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.DepthPercent = 75
End Sub
private void AdjustDepth()
{
    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.DepthPercent = 75;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ChartSheet Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Excel