Skip to content

LiveChart.SignalsWithPoints 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<(string? Name, IList<double>? Y, IList<double> X, int Axis)> SignalsWithPoints { get; set; }

View source

Summary: Gets or sets the collection of signal data points, where each item contains a signal name, Y-values, X-values, and an axis index.

Returns: IEnumerable<(string? Name, IList? Y, IList X, int Axis)>

Remarks

Each tuple in the collection represents a distinct signal. The signal name may be null if unnamed. The Y and X lists must be of equal length for each signal. The axis index specifies which axis the signal is associated with. Setting this property updates the underlying signal data and may trigger related changes in the consuming component.