,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 InitializeScatterPlotLines(IEnumerable<IObservable<(string? Name, IList<double>? Value, IList<double> DateTime, int Axis)>> observables)
Summary: Initializes scatter plot lines using the provided collection of observable data series.
Parameters
| Name | Type | Description |
|---|---|---|
observables | IEnumerable | A collection of observables, each representing a data series for the scatter plot. Each observable provides a tuple containing an optional series name, a list of Y-axis values, a list of X-axis date-time values, and the axis index to which the series belongs. |
Remarks
This method configures the scatter plot to use date-time values on the X-axis. Each data series is visualized as a scatter plot line and associated with the specified axis. The color legend is updated to reflect the plotted series.