LiveChart.DataLoggerObservablesWithPoints property¶
Defined in
Type: LiveChart
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 IEnumerable<IObservable<(string? Name, IList<double>? Value, int Axis, int nMaxPoints)>> DataLoggerObservablesWithPoints { get; set; }
Summary: Gets or sets the collection of observable data streams for logging, each providing a sequence of named data points with associated axis information and a maximum number of points to retain.
Returns: IEnumerable
Remarks
Each observable in the collection emits tuples containing the name of the data series, a list of data values, the axis index, and the maximum number of points to keep. This property is typically used to bind multiple data sources for real-time logging or visualization scenarios.