[]
Returns an object that represents the IChart contained in this shape.
IChart Chart { get; }
ReadOnly Property Chart As IChart
IShape shape = worksheet.Shapes.AddChart(ChartType.Line, 20, 20, 240, 160);
IChart chart = shape.Chart;
ChartType chartType = chart.ChartType;