Condividi tramite


Proprietà ChartSheet.GapDepth

Ottiene o imposta la distanza tra le serie di dati in un oggetto Microsoft.Office.Tools.Excel.ChartSheet 3D, espressa in percentuale rispetto alla larghezza dell'indicatore.

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

Sintassi

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

Valore proprietà

Tipo: System.Int32
Distanza tra le serie di dati in un oggetto Microsoft.Office.Tools.Excel.ChartSheet 3D, espressa in percentuale rispetto alla larghezza dell'indicatore.Il valore di questa proprietà deve essere compreso tra 0 e 500.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà GapDepth per impostare la distanza tra le serie di dati nell'oggetto Microsoft.Office.Tools.Excel.ChartSheet corrente sul 400% della larghezza dell'indicatore.

Private Sub AdjustGapDepth()
    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.GapDepth = 400
End Sub
private void AdjustGapDepth()
{
    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.GapDepth = 400;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ChartSheet Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Excel