Unplanned
Last Updated: 29 Mar 2016 11:03 by ADMIN
ADMIN
Dimitar
Created on: 10 Feb 2016 13:56
Category: ChartView
Type: Bug Report
0
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();
        }
    }
}

0 comments