Table of Contents

Class BOBChartStreamArgs<TX, TY>

Namespace
BlazOrbit.Charts.Models
Assembly
BlazOrbit.Charts.dll

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

TX

X-axis domain type.

TY

Numeric Y-axis domain type.

Inheritance
object
BOBChartStreamArgs<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