Class BOBChartStreamArgs<TX, TY>
Snapshot fired by the chart whenever a streaming append (or window trim) settles. Useful for status banners ("12k points buffered") or downstream observability.
public sealed class BOBChartStreamArgs<TX, TY> where TX : notnull
Type Parameters
TXX-axis domain type.
TYNumeric Y-axis domain type.
- Inheritance
-
objectBOBChartStreamArgs<TX, TY>
Constructors
BOBChartStreamArgs()
public BOBChartStreamArgs()
Properties
AppendedCount
Number of points appended in this batch.
public int AppendedCount { get; init; }
Property Value
- int
DroppedByWindow
Number of points evicted from the head by the FIFO window.
public int DroppedByWindow { get; init; }
Property Value
- int
SeriesLabel
Label of the series that received the update.
public string SeriesLabel { get; init; }
Property Value
- string
TotalCount
Number of points retained for the series after window trim.
public int TotalCount { get; init; }
Property Value
- int