[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparklineGroup.Delete

Delete Method

Delete()

Deletes the sparkline group.

Use this method to remove the current sparkline group after it has been added to a worksheet range.

Declaration
void Delete()
Sub Delete()
Examples
worksheet.Range["A1:C1"].Value = new object[] {1, 3, 2};
ISparklineGroup group = worksheet.Range["D1"].SparklineGroups.Add(SparkType.Line, "A1:C1");
group.Delete();