[]
Deletes the chart from the worksheet.
After this method is called, the chart is removed from the worksheet's shapes collection.
void Delete()
Sub Delete()
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.Delete();