[]
Gets or sets the axis group of the chart group.
AxisGroup AxisGroup { get; set; }
Property AxisGroup As AxisGroup
worksheet.Range["A1:B3"].Value = new object[,] {
{"Month", "Sales"},
{"Jan", 100},
{"Feb", 120}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B3"]);
IChartGroup chartGroup = chart.ChartGroups[0];
AxisGroup axisGroup = chartGroup.AxisGroup;