Member Junction
    Preparing search index...

    Interface MJUserViewEntity_IAggregateValueFormat

    Value formatting options for aggregate results.

    Used inside MJUserViewEntity_IGridAggregate.format to control how the computed aggregate value is displayed — decimal precision, currency symbols, thousands separators, and prefix/suffix decorations.

    interface MJUserViewEntity_IAggregateValueFormat {
        currencyCode?: string;
        dateFormat?: string;
        decimals?: number;
        prefix?: string;
        suffix?: string;
        thousandsSeparator?: boolean;
    }
    Index

    Properties

    currencyCode?: string

    Currency code (ISO 4217), e.g. 'USD', 'EUR'

    dateFormat?: string

    Date format for date aggregates

    decimals?: number

    Number of decimal places

    prefix?: string

    Prefix to add before value (e.g. '$')

    suffix?: string

    Suffix to add after value (e.g. '%')

    thousandsSeparator?: boolean

    Show thousands separator