RenderPriority
StockSharp.Xaml.Charting.Visuals
Enumeration constants to define the render priority for series rendering on the UltrachartSurface
Fields
Immediate
public const RenderPriority Immediate
value = RenderPriority.Immediate
Renders immediately on data update, as opposed to waiting for the CompositionTarget.Rendering event
Low
public const RenderPriority Low
value = RenderPriority.Low
Ultrachart renders whenever there is new data and the CompositionTarget.Rendering event has fired, but with a lower priority than input (mouse) events
Manual
public const RenderPriority Manual
value = RenderPriority.Manual
Never redraws automatically. You must manually call InvalidateElement() or ZoomExtents() on the UltrachartSurface in order to get it to redraw
Normal
public const RenderPriority Normal
value = RenderPriority.Normal
Ultrachart renders whenever there is new data and the CompositionTarget.Rendering event has fired. This is the default option