Skip to content

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

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

Defined in

Type: ScatterPoints 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 ScatterPoints((string? Name, IList<double> X, IList<double> Y, int Axis) Data)
  • 2. protected ScatterPoints(LiveChart.ScatterPoints original)

1. Overload

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

View source

Summary: Represents a set of scatter plot points, including their names, coordinates, and associated axis.

Parameters

NameTypeDescription
Data(string? Name, IList X, IList Y, int Axis)A tuple containing the name of the point set, the X and Y coordinate lists, and the axis index to which the points belong. The coordinate lists must have the same length.

Remarks

Use this record to encapsulate scatter plot data for visualization or analysis. The axis index can be used to distinguish between multiple axes in a chart.

2. Overload

protected ScatterPoints(LiveChart.ScatterPoints original)

View source

Parameters

NameTypeDescription
original[ScatterPoints](#--