HistogramBin Struct
Definition
Represents a computed histogram bin.
public struct HistogramBin
Constructors
| Name | Description |
|---|---|
| HistogramBin | Represents a computed histogram bin. |
HistogramBin Constructor
Represents a computed histogram bin.
public HistogramBin(double BinStart, double BinEnd, int Count)
Parameters
BinStart double
The inclusive lower bound of the bin.
BinEnd double
The upper bound of the bin.
Count int
The number of values in the bin.
Methods
| Name | Description |
|---|---|
| Deconstruct | No summary available. |
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| ToString | No summary available. |
Deconstruct Method
public void Deconstruct(double& BinStart, double& BinEnd, int& Count)
Parameters
BinStart double&
BinEnd double&
Count int&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.Charts.HistogramBin other)
Parameters
other Avalonia.Controls.Charts.HistogramBin
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 |
|---|---|
| BinEnd | The upper bound of the bin. |
| BinStart | The inclusive lower bound of the bin. |
| Count | The number of values in the bin. |
BinEnd Property
The upper bound of the bin.
public double BinEnd { get; set; }
BinStart Property
The inclusive lower bound of the bin.
public double BinStart { get; set; }
Count Property
The number of values in the bin.
public int Count { get; set; }