Condividi tramite


Metodo ChartSheet.RadarGroups

In un oggetto Microsoft.Office.Tools.Excel.ChartSheet 2D restituisce un oggetto che rappresenta un singolo gruppo di grafici radar (oggetto ChartGroup) oppure un insieme di gruppi di grafici radar (insieme ChartGroups).

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

Sintassi

'Dichiarazione
Function RadarGroups ( _
    Index As Object _
) As Object
Object RadarGroups(
    Object Index
)

Parametri

Valore restituito

Tipo: System.Object

Note

Parametri facoltativi

Per informazioni sui parametri facoltativi, vedere Parametri facoltativi nelle soluzioni Office.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzato il metodo RadarGroups per aggiungere etichette di asse radar all'oggetto Microsoft.Office.Tools.Excel.ChartSheet corrente.

Private Sub UseRadarGroups()
    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.xlRadar

    Dim group As Excel.ChartGroup = _
        CType(Me.RadarGroups(1), Excel.ChartGroup)
    group.HasRadarAxisLabels = True
End Sub
private void UseRadarGroups()
{
    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.xlRadar;

    Excel.ChartGroup group =
        (Excel.ChartGroup)this.RadarGroups(1);
    group.HasRadarAxisLabels = true;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ChartSheet Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Excel