Hi Yuri,
Can you try to remove all calls to RenderDevice – the control will now automatically select the render device based on the Enable3D setting applicable to chart panels – for example:
using Nevron.GraphicsCore;
using Nevron.Chart;
using Nevron.Chart.WinForm;
…
NChart chart = nChartControl1.Charts[0];
nChartControl1.Settings.RenderSurface = RenderSurface.Window;
chart.Enable3D = true;
NBarSeries bar = new NBarSeries();
bar.Values.Add(10);
bar.Values.Add(20);
bar.Values.Add(30);
chart.Series.Add(bar);
nChartControl1.Controller.Tools.Add(new NSelectorTool());
nChartControl1.Controller.Tools.Add(new NTrackballTool());
Hope I helped – let me know if the problem persists…
Best regards,
Bob