Completed
Last Updated: 15 Feb 2018 09:51 by Dimitar
ADMIN
Hristo
Created on: 31 Jan 2018 13:09
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - disposing the chart in OpenEdge results in a NotImplementedException
Workaround:
public class MyRadChartView : RadChartView
{
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadChartView).FullName;
        }
    }

    protected override void Dispose(bool disposing)
    {
        base.Dispose(false);
    }
}
0 comments