RenderPriority Enumeration
Enumeration constants to define the render priority for series rendering on the SciChartSurface
Syntax
public enum RenderPriority : System.Enum 
Members
MemberDescription
Immediate Renders immediately on data update, as opposed to waiting for the CompositionTarget.Rendering event
Low SciChart renders whenever there is new data and the CompositionTarget.Rendering event has fired, but with a lower priority than input (mouse) events
Manual Never redraws automatically. You must manually call InvalidateElement() or ZoomExtents() on the SciChartSurface in order to get it to redraw
Normal SciChart renders whenever there is new data and the CompositionTarget.Rendering event has fired. This is the default option
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         SciChart.Charting.Visuals.RenderPriority

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also