Skip to content

,System.Collections.Generic.IList{System.Double>

Defined in

Type: StreamerUI Namespace: CrissCross.WPF.Plot Assembly: CrissCross.WPF.Plot.dll

Applies to

net10.0-windows10.0.19041, net9.0-windows10.0.19041, net8.0-windows10.0.19041, net481

public void UpdateStreamerFixedPoints(IObservable<(string? Name, IList<double>? Y, IList<double> X, int Axis)> observable)

View source

Summary: Subscribes to an observable sequence of fixed-point data and updates the streamer plot with new values as they arrive.

Parameters

NameTypeDescription
observableIObservable<(string? Name, IList? Y, IList X, int Axis)>An observable sequence that provides tuples containing the series name, Y-values, X-values, and axis index. Each tuple must have a non-empty name, non-null and non-empty Y and X lists of equal length.

Remarks

The method processes incoming data on a background thread and updates the plot on the main thread. Data is only plotted if the chart is not paused. The observable sequence is retried on error, ensuring continuous updates unless disposed.