PercentBarStyle

Style used to display Percent Bars in Special Column Style

TypeScript
export interface PercentBarStyle extends
Extends

NumericStyledColumn

Properties

PropertyTypeDescriptionDefault
BackColorstringBackground colour for 'Percent Bar'; leave unset if none requiredundefined
CellTextPropertiesBarStyleCellTextPropertiesOptional cell-text overlay configuration (display tokens, position, layout, alignment).
FontCellFontStyleOptional cell-text styling applied to CellText overlay
Origin'Auto' | 'Zero' | 'Min' | numberOrigin of the bar - i.e. the value the bar grows from Auto, Zero, Min or fixed number'Auto'
ToolTipTextCellTextOptionsWhether Tooltip shows Cell Value, Percent Value, both or none

Property Details

BackColor

Background colour for 'Percent Bar'; leave unset if none required

TypeScript
BackColor?: string;
Default Value

undefined

Property Value

string

CellTextProperties

Optional cell-text overlay configuration (display tokens, position, layout, alignment).

TypeScript
CellTextProperties?: BarStyleCellTextProperties;
Property Value

BarStyleCellTextProperties

Font

Optional cell-text styling applied to CellText overlay

TypeScript
Font?: CellFontStyle;
Property Value

CellFontStyle

Origin

Origin of the bar - i.e. the value the bar grows from Auto, Zero, Min or fixed number

TypeScript
Origin?: 'Auto' | 'Zero' | 'Min' | number;
Default Value

'Auto'

Property Value

'Auto' | 'Zero' | 'Min' | number

ToolTipText

Whether Tooltip shows Cell Value, Percent Value, both or none

TypeScript
ToolTipText?: CellTextOptions;
Property Value

CellTextOptions