RangeBarOutOfRangeProperties
Out-of-range behaviour for a Range Bar.
TypeScript
export interfaceProperties
| Property | Type | Description | Default |
|---|---|---|---|
| Color | string | Marker colour override applied when the cell value is out of range (only used with Mode: 'Clamp'). Useful to draw attention to "off-scale" rows. | |
| Mode | 'Clamp' | 'Overflow' | 'Hide' | Behaviour when the cell value falls outside [Min, Max]. | 'Clamp' |
Property Details
Color
Marker colour override applied when the cell value is out of range (only used with Mode: 'Clamp'). Useful to draw attention to "off-scale" rows.
TypeScript
Color?: string;Property Value
string
Mode
Behaviour when the cell value falls outside [Min, Max].
'Clamp'(default) — clamp the marker to the nearest end of the track and (optionally) re-colour it viaColor-'Overflow'— draw the marker outside the track at its true position -'Hide'— omit the cell-value marker entirely
TypeScript
Mode?: 'Clamp' | 'Overflow' | 'Hide';Default Value
'Clamp'
Property Value
'Clamp' | 'Overflow' | 'Hide'