Enum ChartUpdateTypes
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
Defines how/when chart is updated and new frames are rendered.
public enum ChartUpdateTypes
Fields
Async = 1Chart 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.
LimitedFrameRate = 2Chart 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.
Sync = 0Chart 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.
Remarks
Note that size changes are handled separately and they can be changed to be handled in async way separately. Also the MoveToUIhread has similar effect to the Async options.