[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartGroup.AxisGroup

AxisGroup Property

AxisGroup

Gets or sets the axis group of the chart group.

Declaration
AxisGroup AxisGroup { get; set; }
Property AxisGroup As AxisGroup
Examples
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;