Hi,
I saw in the documentation, that combination of radar charts is not yet supported. I'm looking for the possibility to use different series, for which 1 is a RadarFilled type, whereas the others are simple Radar.
I use .net; the result was the last selected type for all series
Following gives the sample code:
for (int idx = 0; idx < evdList.Count + 1; idx++)
{
colLetter = CommonProcs.ConvertIndexRowToLetter(idx + 1);
int currIdx = chart.NSeries.Add("Samenvatting!" + colLetter + ((int)(competenceStartRow + 1)).ToString() + ":" + colLetter + ((int)(competenceRowS2 + 1)).ToString(), true);
if (idx == 0)
{
chart.NSeries[currIdx].Type = ChartType..RadarFilled;
chart.NSeries[currIdx].Area.FillFormat = Color.Red;
}
else
{
chart.NSeries[currIdx].Type = ChartType.RadarWithDataMarkers;
}
}
Is there a planning when this would be available?
Thanks for your support.