PercentBarStyle
Style used to display Percent Bars in Special Column Style
TypeScript
export interface PercentBarStyle extendsExtends
Properties
| Property | Type | Description | Default |
|---|---|---|---|
| BackColor | string | Background colour for 'Percent Bar'; leave unset if none required | undefined |
| CellTextProperties | BarStyleCellTextProperties | Optional cell-text overlay configuration (display tokens, position, layout, alignment). | |
| Font | CellFontStyle | Optional cell-text styling applied to CellText overlay | |
| Origin | 'Auto' | 'Zero' | 'Min' | number | Origin of the bar - i.e. the value the bar grows from Auto, Zero, Min or fixed number | 'Auto' |
| ToolTipText | CellTextOptions | Whether 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
Font
Optional cell-text styling applied to CellText overlay
TypeScript
Font?: CellFontStyle;Property Value
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;