Skip to main content

TableChartColumn Class

Definition

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

Defines a column in a TableChart.

public class TableChartColumn

Inheritance: object -> TableChartColumn

Implements: INotifyPropertyChanged

Constructors

NameDescription
TableChartColumnNo summary available.

TableChartColumn Constructor

public TableChartColumn()

Properties

NameDescription
FormatGets or sets the format string for the value.
HeaderGets or sets the column header text.
HighBrushGets or sets the brush for the maximum value.
LowBrushGets or sets the brush for the minimum value.
MaxValueGets or sets the maximum value for the color scale.
MinValueGets or sets the minimum value for the color scale.
UseColorScaleGets or sets whether to use a color scale for cell backgrounds.
ValuePathGets 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

NameDescription
PropertyChangedOccurs when a property value changes.

PropertyChanged Event

Occurs when a property value changes.

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged