ReactivePlotOverflowStrategy enum¶
Defined in
Namespace: CrissCross.WPF.Plot
Assembly: CrissCross.WPF.Plot.dll
Full name: CrissCross.WPF.Plot.ReactivePlotOverflowStrategy
Modifiers: public sealed
Summary¶
Describes how retained plot data overflows are handled.
Applies to
net10.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041, net481
Values¶
| Name | Value | Description |
|---|---|---|
DropOldest | 0 | Drop the oldest retained points first. |
DropNewest | 1 | Drop the newest incoming points first. |
KeepLatest | 2 | Keep only the latest visible points. |
BlockSource | 3 | Reserve space for future blocking implementations; currently behaves as drop-oldest. |