[]
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.
IChartGroups RadarGroups { get; }
ReadOnly Property RadarGroups As IChartGroups
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];