TrendlineCollection

TrendlineCollection class

Représente une collection de tous lesTrendline objets pour la série de données spécifiée.

public class TrendlineCollection : CollectionBase<Trendline>

Propriétés

NomLa description
Capacity { get; set; }
Count { get; }
Item { get; }Obtient un objet par son index.
Item { get; set; }

Méthodes

NomLa description
Add(TrendlineType)Ajoute un objet à cette collection avec le type spécifié.
Add(TrendlineType, string)Ajoute un objet à cette collection avec le type et le nom spécifiés.
BinarySearch(Trendline)
BinarySearch(Trendline, IComparer<Trendline>)
BinarySearch(int, int, Trendline, IComparer<Trendline>)
Clear()
Contains(Trendline)
CopyTo(Trendline[])
CopyTo(Trendline[], int)
CopyTo(int, Trendline[], int, int)
Exists(Predicate<Trendline>)
Find(Predicate<Trendline>)
FindAll(Predicate<Trendline>)
FindIndex(Predicate<Trendline>)
FindIndex(int, Predicate<Trendline>)
FindIndex(int, int, Predicate<Trendline>)
FindLast(Predicate<Trendline>)
FindLastIndex(Predicate<Trendline>)
FindLastIndex(int, Predicate<Trendline>)
FindLastIndex(int, int, Predicate<Trendline>)
GetEnumerator()
IndexOf(Trendline)
IndexOf(Trendline, int)
IndexOf(Trendline, int, int)
LastIndexOf(Trendline)
LastIndexOf(Trendline, int)
LastIndexOf(Trendline, int, int)
RemoveAt(int)

Exemples

[C#]

//Instanciation d'un objet Workbook
Workbook workbook = new Workbook();
//Ajout d'une nouvelle feuille de calcul à l'objet Excel
int sheetIndex = workbook.Worksheets.Add();
//Obtention de la référence de la feuille de calcul nouvellement ajoutée en passant son index de feuille
Worksheet worksheet = workbook.Worksheets[sheetIndex];
worksheet.Cells["A1"].PutValue(50);
worksheet.Cells["A2"].PutValue(100);
worksheet.Cells["A3"].PutValue(150);
worksheet.Cells["A4"].PutValue(200);
worksheet.Cells["B1"].PutValue(60);
worksheet.Cells["B2"].PutValue(32);
worksheet.Cells["B3"].PutValue(50);
worksheet.Cells["B4"].PutValue(40);

//Ajout d'un graphique à la feuille de calcul
int chartIndex = workbook.Worksheets[0].Charts.Add(ChartType.Column, 3, 3, 15, 10);
Chart chart = workbook.Worksheets[0].Charts[chartIndex];
chart.NSeries.Add("A1:a3", true);
chart.NSeries[0].TrendLines.Add(TrendlineType.Linear, "MyTrendLine");
Trendline line = chart.NSeries[0].TrendLines[0];
line.DisplayEquation = true;
line.DisplayRSquared = true;
line.Color = Color.Red;

[Visual Basic]

'Instanciation d'un objet Workbook
Dim workbook As Workbook = New Workbook()
'Ajout d'une nouvelle feuille de calcul à l'objet Excel
Dim sheetIndex As Int32 = workbook.Worksheets.Add()
'Obtenir la référence de la feuille de calcul nouvellement ajoutée en passant son index de feuille
Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
worksheet.Cells("A1").PutValue(50)
worksheet.Cells("A2").PutValue(100)
worksheet.Cells("A3").PutValue(150)
worksheet.Cells("A4").PutValue(200)
worksheet.Cells("B1").PutValue(60)
worksheet.Cells("B2").PutValue(32)
worksheet.Cells("B3").PutValue(50)
worksheet.Cells("B4").PutValue(40)

'Ajouter un graphique à la feuille de calcul
Dim chartIndex As Integer =  workbook.Worksheets(0).Charts.Add(ChartType.Column,3,3,15,10) 
Dim chart As Chart =  workbook.Worksheets(0).Charts(chartIndex) 
chart.NSeries.Add("A1:a3", True)
chart.NSeries(0).TrendLines.Add(TrendlineType.Linear, "MyTrendLine")
Dim line As Trendline =  chart.NSeries(0).TrendLines(0) 
line.DisplayEquation = True
line.DisplayRSquared = True
line.Color = Color.Red

Voir également