,System.Collections.Generic.IList{System.Double>
Defined in Type: LiveChartViewModel
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 InitializeLinesForScatterObservablesPoints(IEnumerable<IObservable<(string? Name, IList<double>? X, IList<double> Y, int Axis)>> observables)
Summary: Initializes plot lines for scatter plots using a collection of observable point sequences.
Parameters
| Name | Type | Description |
|---|---|---|
observables | IEnumerable | A collection of observables, each providing a sequence of points to plot. Each observable emits tuples containing an optional series name, optional X values, required Y values, and the axis index for plotting. |
Remarks
Use this method to set up scatter plot lines that update dynamically as the underlying observable data changes. Each observable sequence represents a distinct data series on the plot. The method does not treat X values as date/time data; X values are interpreted as numeric.