[]
Gets the parent chart of this axes collection.
The returned IChart is the chart that owns these axes.
IChart Parent { get; }
ReadOnly Property Parent As IChart
| Type | Description |
|---|---|
| IChart | The parent IChart that contains this axes collection. |
IShape shape = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 10, 10, 300, 200);
IChart chart = shape.Chart;
IAxes axes = chart.Axes;
IChart parentChart = axes.Parent;