Skip to content

,System.Collections.Generic.IList{System.Double},System.Int32})}

SignalXYPoints((string? Name, IList? Y, IList X, int Axis)) constructor

Defined in

Type: SignalXYPoints 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

Overloads

  • 1. public SignalXYPoints((string? Name, IList<double>? Y, IList<double> X, int Axis) Data)
  • 2. protected SignalXYPoints(LiveChart.SignalXYPoints original)

1. Overload

public SignalXYPoints((string? Name, IList<double>? Y, IList<double> X, int Axis) Data)

View source

Summary: Represents a set of XY signal data points, including optional metadata such as a name and axis assignment.

Parameters

NameTypeDescription
Data(string? Name, IList? Y, IList X, int Axis)A tuple containing the signal name, the Y values, the X values, and the axis index. The name may be null to indicate an unnamed signal. The Y and X lists must contain the signal's data points; both lists should be of equal length. The axis parameter specifies which axis the signal is associated with.

Remarks

Use this record to encapsulate XY data for plotting or analysis, along with relevant metadata. The axis index can be used to distinguish between multiple axes in visualization scenarios.

2. Overload

protected SignalXYPoints(LiveChart.SignalXYPoints original)

View source

Parameters

NameTypeDescription
original[SignalXYPoints](#--