FIX. RadChartView - pie series do not implement the ILegendInfoProvider interface.
To reproduce:
- Implement the drill down functionality with a PieSeries.
- Workaround:
class MyPieSeries : PieSeries, ILegendInfoProvider
{
public LegendItemCollection LegendInfos
{
get
{
return new LegendItemCollection();
}
}
}