[]
Returns information if the IShape contains a chart.
Use this property to determine whether Chart can be used to access a chart contained in the shape.
bool HasChart { get; }
ReadOnly Property HasChart As Boolean
IShape shape = worksheet.Shapes.AddChart(ChartType.Line, 20, 20, 240, 160);
bool hasChart = shape.HasChart;