[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparklineGroup.Count

Count Property

Count

Returns the number of sparklines in the sparkline group.

Use this property to determine how many individual sparklines are contained in the group.

Declaration
int Count { get; }
ReadOnly Property Count As Integer
Examples
worksheet.Range["A1:C3"].Value = new object[,] {
    {1, 3, 2},
    {4, 6, 5},
    {7, 9, 8}
};
ISparklineGroup group = worksheet.Range["D1:D3"].SparklineGroups.Add(SparkType.Line, "A1:C3");
int count = group.Count;