[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartTitle.Parent

Parent Property

Parent

Gets the parent IChart that contains this chart title.

Use this property to access the chart that owns the current chart title.

Declaration
IChart Parent { get; }
ReadOnly Property Parent As IChart
Examples
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;