PercentBarStyle
Style used to display Percent Bars in Special Column Style
TypeScript
export interface PercentBarStyle extendsExtends
Properties
| Property | Description | Default |
|---|---|---|
| BackColor | Background colour for 'Percent Bar'; leave unset if none required | undefined |
| CellText | Whether Cell shows Cell Value, Percent Value, both or none | |
| CellTextPosition | Position of text in Cell relative to Percent Bar, "Above", "Below" or "Merged" | Below |
| ToolTipText | 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
CellText
Whether Cell shows Cell Value, Percent Value, both or none
TypeScript
CellText?: CellTextOptions;Property Value
CellTextPosition
Position of text in Cell relative to Percent Bar, "Above", "Below" or "Merged"
TypeScript
CellTextPosition?: 'Above' | 'Below' | 'Merged';Default Value
Below
Property Value
'Above' | 'Below' | 'Merged'
ToolTipText
Whether Tooltip shows Cell Value, Percent Value, both or none
TypeScript
ToolTipText?: CellTextOptions;