[]
Gets the parent IChart that contains this chart title.
Use this property to access the chart that owns the current chart title.
IChart Parent { get; }
ReadOnly Property Parent As IChart
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.ChartTitle.Text = "Sales Analysis";
IChartTitle title = chart.ChartTitle;
IChart parentChart = title.Parent;