[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IAxes.Parent

Parent Property

Parent

Gets the parent chart of this axes collection.

The returned IChart is the chart that owns these axes.

Declaration
IChart Parent { get; }
ReadOnly Property Parent As IChart
Property Value
Type Description
IChart

The parent IChart that contains this axes collection.

Examples
IShape shape = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 10, 10, 300, 200);
IChart chart = shape.Chart;
IAxes axes = chart.Axes;
IChart parentChart = axes.Parent;