TableChartColumn Class
Definition
Defines a column in a TableChart.
public class TableChartColumn
Constructors
| Name | Description |
|---|---|
| TableChartColumn | No summary available. |
TableChartColumn Constructor
public TableChartColumn()
Properties
| Name | Description |
|---|---|
| Format | Gets or sets the format string for the value. |
| Header | Gets or sets the column header text. |
| HighBrush | Gets or sets the brush for the maximum value. |
| LowBrush | Gets or sets the brush for the minimum value. |
| MaxValue | Gets or sets the maximum value for the color scale. |
| MinValue | Gets or sets the minimum value for the color scale. |
| UseColorScale | Gets or sets whether to use a color scale for cell backgrounds. |
| ValuePath | Gets or sets the property path for the value. |
Format Property
Gets or sets the format string for the value.
public string Format { get; set; }
Header Property
Gets or sets the column header text.
public string Header { get; set; }
HighBrush Property
Gets or sets the brush for the maximum value.
public Avalonia.Media.IBrush HighBrush { get; set; }
LowBrush Property
Gets or sets the brush for the minimum value.
public Avalonia.Media.IBrush LowBrush { get; set; }
MaxValue Property
Gets or sets the maximum value for the color scale.
public double MaxValue { get; set; }
MinValue Property
Gets or sets the minimum value for the color scale.
public double MinValue { get; set; }
UseColorScale Property
Gets or sets whether to use a color scale for cell backgrounds.
public bool UseColorScale { get; set; }
ValuePath Property
Gets or sets the property path for the value.
public string ValuePath { get; set; }
Events
| Name | Description |
|---|---|
| PropertyChanged | Occurs when a property value changes. |
PropertyChanged Event
Occurs when a property value changes.
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged