Partager via


ChartSheet.ApplyCustomType, méthode

Applique un type de graphique standard ou personnalisé à Microsoft.Office.Tools.Excel.ChartSheet.

Espace de noms :  Microsoft.Office.Tools.Excel
Assemblys :   Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
  Microsoft.Office.Tools.Excel (dans Microsoft.Office.Tools.Excel.dll)

Syntaxe

'Déclaration
Sub ApplyCustomType ( _
    ChartType As XlChartType, _
    TypeName As Object _
)
void ApplyCustomType(
    XlChartType ChartType,
    Object TypeName
)

Paramètres

  • TypeName
    Type : System.Object
    Nom du type de graphique personnalisé si ChartType spécifie une bibliothèque de graphiques personnalisés.

Notes

Paramètres optionnels

Pour plus d'informations sur les paramètres optionnels, consultez Paramètres optionnels dans les solutions Office.

Exemples

L'exemple de code suivant utilise la méthode ApplyCustomType pour affecter au Microsoft.Office.Tools.Excel.ChartSheet actuel un type de graphique standard qui utilise des barres groupées pour afficher les données.

Private Sub SetChartSheetType()
    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.ApplyCustomType(Excel.XlChartType.xlBarClustered)
End Sub
private void SetChartSheetType()
{
    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.ApplyCustomType(Excel.XlChartType.xlBarClustered);
}

Sécurité .NET Framework

Voir aussi

Référence

ChartSheet Interface

Microsoft.Office.Tools.Excel, espace de noms