[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.RadarGroups

RadarGroups Property

RadarGroups

Gets the collection of radar chart groups on a 2D chart.

Use this property to access the IChartGroups collection for the radar chart groups in the current chart.

Declaration
IChartGroups RadarGroups { get; }
ReadOnly Property RadarGroups As IChartGroups
Examples
worksheet.Range["A1:B5"].Value = new object[,] {
    {"Category", "Score"},
    {"Speed", 80},
    {"Power", 65},
    {"Skill", 90},
    {"Focus", 75}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.Radar, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B5"]);
IChartGroups radarGroups = chart.RadarGroups;
IChartGroup radarGroup = radarGroups[0];