ChartUpdateTypes Enumeration |
Namespace: Arction.Wpf.ChartingMVVM
| Member name | Value | Description | |
|---|---|---|---|
| Sync | 0 | 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. | |
| Async | 1 | 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. | |
| LimitedFrameRate | 2 |
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. |