Skip to main content

MatrixRowData Class

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a single row of data in a matrix chart, containing a label and an array of boolean values indicating presence/absence or true/false states.

public class MatrixRowData

Inheritance: object -> MatrixRowData

Implements: IEquatable<MatrixRowData>

Constructors

NameDescription
MatrixRowDataRepresents a single row of data in a matrix chart, containing a label and an array of boolean values indicating presence/absence or true/false states.

MatrixRowData Constructor

Represents a single row of data in a matrix chart, containing a label and an array of boolean values indicating presence/absence or true/false states.

public MatrixRowData(string Label, bool[] Values)

Parameters

Label string

The row label or identifier.

Values bool[]

The array of boolean values representing the state for each column in the matrix.

Methods

NameDescription
<Clone>$No summary available.
DeconstructNo summary available.
Equals (2 overloads)No summary available.
GetHashCodeNo summary available.
ToStringNo summary available.

<Clone>$ Method

public Avalonia.Controls.Charts.MatrixRowData <Clone>$()

Returns

Avalonia.Controls.Charts.MatrixRowData

Deconstruct Method

public void Deconstruct(string& Label, bool[]& Values)

Parameters

Label string&

Values bool[]&

Equals overloads

Equals Method

public bool Equals(Avalonia.Controls.Charts.MatrixRowData other)
Parameters

other Avalonia.Controls.Charts.MatrixRowData

Returns

bool

Equals Method

public bool Equals(object obj)
Parameters

obj object

Returns

bool

GetHashCode Method

public int GetHashCode()

Returns

int

ToString Method

public string ToString()

Returns

string

Properties

NameDescription
LabelThe row label or identifier.
ValuesThe array of boolean values representing the state for each column in the matrix.

Label Property

The row label or identifier.

public string Label { get; set; }

Values Property

The array of boolean values representing the state for each column in the matrix.

public bool[] Values { get; set; }