[]
Gets the parent object for the specified object.
IChart Parent { get; }
ReadOnly Property Parent As IChart
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IPlotArea plotArea = chart.PlotArea;
IChart parentChart = plotArea.Parent;