[]
Gets the name of the chart object.
The returned value is the object name assigned to the chart.
string Name { get; }
ReadOnly Property Name As String
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
string name = chart.Name;