MatrixRowData Class
Definition
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
Constructors
| Name | Description |
|---|---|
| MatrixRowData | 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. |
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
| Name | Description |
|---|---|
| <Clone>$ | No summary available. |
| Deconstruct | No summary available. |
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| ToString | No summary available. |
<Clone>$ Method
public Avalonia.Controls.Charts.MatrixRowData <Clone>$()
Returns
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
| Name | Description |
|---|---|
| Label | The row label or identifier. |
| Values | The 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; }