Nevron .NET Vision
Chart for .NET / User's Guide / Miscellaneous / Changing the Render Surface

In This Topic
    Changing the Render Surface
    In This Topic

    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
    
    The RenderSurface property is not regarded in Server applications (ASP.NET and MVC).

     

    See Also