New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines the appearance of the cell that visualizes aggregates in the group of the grid when GroupAggregatesAlignment is set to NextToHeader.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class DataGridGroupAggregateCellAppearance : DataGridAppearance

Inheritance: objectDataGridAppearanceDataGridGroupAggregateCellAppearance

Fields

FontAttributesProperty

BindableProperty

Identifies the FontAttributes property.

C#
public static readonly BindableProperty FontAttributesProperty

FontFamilyProperty

BindableProperty

Identifies the FontFamily property.

C#
public static readonly BindableProperty FontFamilyProperty

FontSizeProperty

BindableProperty

Identifies the FontSize property.

C#
public static readonly BindableProperty FontSizeProperty

MarginProperty

BindableProperty

Identifies the Margin property.

C#
public static readonly BindableProperty MarginProperty

TextColorProperty

BindableProperty

Identifies the TextColor property.

C#
public static readonly BindableProperty TextColorProperty

Properties

FontAttributes

FontAttributes

Gets or sets FontAttributes of the cell.

C#
public FontAttributes FontAttributes { get; set; }

Gets or sets the font family of the cell.

C#
public string FontFamily { get; set; }

Gets or sets the font size of the cell.

C#
[TypeConverter(typeof(FontSizeConverter))]
public double FontSize { get; set; }

Margin

Thickness

Gets or sets the margin that is applied to the text of the cell.

C#
public Thickness Margin { get; set; }

Gets or sets the color of the cell text.

C#
public Color TextColor { get; set; }