Nevron Chart supports two types of render surfaces - window and bitmap. The default render surface is set to bitmap, because in this mode the rendering is done on the CPU and hence does not depend on the installed video board and drivers. When rendering using the window render surface the chart will automatically leverage the video board hardware acceleration, which results in much higher rendering speed.
The following code snippet shows how to set the render surface to Window mode:
C# |
Copy Code
|
---|---|
chartControl.Settings.RenderSurface = RenderSurface.Window; |
Visual Basic |
Copy Code
|
---|---|
chartControl.Settings.RenderSurface = RenderSurface.Window |