[]
Deletes the legend from its parent chart.
After this method is called, the chart no longer displays this legend.
void Delete()
Sub Delete()
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
ILegend legend = chart.Legend;
legend.Delete();