Partilhar via


Método ChartSheetBase.ApplyDataLabels

Aplica rótulos de dados para um ponto, uma série ou todas as séries em um Microsoft.Office.Tools.Excel.ChartSheetBase.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (em Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintaxe

'Declaração
Public Sub ApplyDataLabels ( _
    type As XlDataLabelsType, _
    legendKey As Object, _
    autoText As Object, _
    hasLeaderLines As Object, _
    showSeriesName As Object, _
    showCategoryName As Object, _
    showValue As Object, _
    showPercentage As Object, _
    showBubbleSize As Object, _
    separator As Object _
)
public void ApplyDataLabels(
    XlDataLabelsType type,
    Object legendKey,
    Object autoText,
    Object hasLeaderLines,
    Object showSeriesName,
    Object showCategoryName,
    Object showValue,
    Object showPercentage,
    Object showBubbleSize,
    Object separator
)

Parâmetros

  • legendKey
    Tipo: System.Object
    true para mostrar o código da legenda próxima ao ponto.O valor padrão é false.
  • autoText
    Tipo: System.Object
    true Se o objeto gera automaticamente o texto apropriado com base no conteúdo.
  • showSeriesName
    Tipo: System.Object
    O nome da série para o rótulo de dados.
  • showCategoryName
    Tipo: System.Object
    O nome de categoria para o rótulo de dados.
  • showPercentage
    Tipo: System.Object
    A porcentagem para o rótulo de dados.
  • showBubbleSize
    Tipo: System.Object
    O tamanho da bolha para o rótulo de dados.

Comentários

Optional Parameters

Para obter informações sobre os parâmetros opcionais, consulte Parâmetros opcionais em soluções do Office.

Exemplos

O seguinte exemplo de código usa a ApplyDataLabels método para mostrar os valores de dados no atual Microsoft.Office.Tools.Excel.ChartSheetBase.

Private Sub ShowDataLabels()
    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.ApplyDataLabels(Excel.XlDataLabelsType.xlDataLabelsShowValue, _
        AutoText:=True, HasLeaderLines:=False, ShowSeriesName:=False, _
        ShowCategoryName:=True, ShowValue:=True, ShowPercentage:=False, _
        ShowBubbleSize:=True)
End Sub
private void ShowDataLabels()
{
    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.ApplyDataLabels(
        Excel.XlDataLabelsType.xlDataLabelsShowValue,
        missing, true, false, false, true, true, false, 
        true, missing);
}

Segurança do .NET Framework

Consulte também

Referência

ChartSheetBase Classe

Namespace Microsoft.Office.Tools.Excel