ConditionalFormattingValue
Home > @gooddata/sdk-ui-pivot > ConditionalFormattingValue
ConditionalFormattingValue type
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
The operand a condition compares against. Discriminated so range / no-operand / (future column-reference) shapes stay valid by construction.
Signature:
export type ConditionalFormattingValue = {
kind: "none";
} | {
kind: "literal";
value: string | number;
} | {
kind: "literalRange";
from: number;
to: number;
};