Member Junction
    Preparing search index...

    Interface MJUserViewEntity_IAggregateConditionalStyle

    Conditional styling rule for aggregate values, providing visual indicators (green/yellow/red) based on the computed result.

    Used inside MJUserViewEntity_IGridAggregate.conditionalStyles. Rules are evaluated in order; the first match wins.

    interface MJUserViewEntity_IAggregateConditionalStyle {
        operator: "between" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte";
        style: "success" | "warning" | "danger" | "info" | "muted";
        value: string | number;
        value2?: string | number;
    }
    Index

    Properties

    operator: "between" | "eq" | "neq" | "gt" | "gte" | "lt" | "lte"

    Condition operator

    style: "success" | "warning" | "danger" | "info" | "muted"

    Style class to apply

    value: string | number

    Value to compare against

    value2?: string | number

    Second value for 'between' operator