Compartir a través de


ChartSheet.XYGroups (Método)

En un gráfico 2D de un objeto Microsoft.Office.Tools.Excel.ChartSheet, devuelve un objeto que representa un único grupo de gráficos de dispersión (un objeto ChartGroup) o una colección de los grupos de gráficos de dispersión (una colección ChartGroups).

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblados:   Microsoft.Office.Tools.Excel.v4.0.Utilities (en Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
  Microsoft.Office.Tools.Excel (en Microsoft.Office.Tools.Excel.dll)

Sintaxis

'Declaración
Function XYGroups ( _
    Index As Object _
) As Object
Object XYGroups(
    Object Index
)

Parámetros

Valor devuelto

Tipo: System.Object

Comentarios

Parámetros opcionales

Para obtener información sobre parámetros opcionales, vea Parámetros opcionales en las soluciones de Office.

Ejemplos

El ejemplo de código siguiente utiliza el método XYGroups para mostrar el grupo de ejes del objeto Microsoft.Office.Tools.Excel.ChartSheet actual.

Private Sub UseXYGroups()
    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.xlXYScatter

    Dim group As Excel.ChartGroup = _
        CType(Me.XYGroups(1), Excel.ChartGroup)
    MsgBox("The axis group is: " & group.AxisGroup.ToString())
End Sub
private void UseXYGroups()
{
    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.xlXYScatter;

    Excel.ChartGroup group =
        (Excel.ChartGroup)this.XYGroups(1);
    MessageBox.Show("The axis group is: " + 
        group.AxisGroup.ToString());
}

Seguridad de .NET Framework

Vea también

Referencia

ChartSheet Interfaz

Microsoft.Office.Tools.Excel (Espacio de nombres)