Click or drag to resize

ChartUpdateTypes Enumeration

LightningChart .NET Help
Defines how/when chart is updated and new frames are rendered.

Namespace:  Arction.Wpf.ChartingMVVM
Assembly:  Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntax
public enum ChartUpdateTypes
Members
  Member nameValueDescription
Sync0 Chart is updated in sync fashion on property changes. This is the fastest way to get most performance out of the chart and to minimize latency.
Async1 Chart is updated on async fashion. The chart will update as fast as possible after property changes, but the property changes will return as fast as possible, and chart will render new frame at some later point.
LimitedFrameRate2 Chart will limit the framerate of the updates to value defined by FrameRateLimit.

This is similar to the Async option, but keeps prevents new frames to be rendered right after another, thus reducing framerate, but sparing system resources.

See Also