Defines which Colours to show in Gradient and Percent Bar Styles

TypeScript
export interface

Properties

PropertyDescription
ColorCell colour to use for values that fall inside Range
MaxEnd number of Range
MinStart number of Range
ReverseGradientReverses the Gradient so the lower the cell value the darker the colour

Property Details

Color

Cell colour to use for values that fall inside Range

TypeScript
Color: string;
Property Value

string

Max

End number of Range

TypeScript
Max: number | 'Col-Max';
Property Value

number | 'Col-Max'

Min

Start number of Range

TypeScript
Min: number | 'Col-Min';
Property Value

number | 'Col-Min'

ReverseGradient

Reverses the Gradient so the lower the cell value the darker the colour

TypeScript
ReverseGradient?: boolean;
Property Value

boolean