interface NumberFormatStyle {
    args?: NumberFormatStyleConfig;
    formatType: NumberFormatType;
    numberFormat: string;
    primary?: number;
    regMatch?: RegExp;
}

Properties

formatType: NumberFormatType

Category of format

numberFormat: string
primary?: number

If used in a menu it's the sort oder. TODO - enrich this since excel and drawMl (charts are slightly different. Union these?)

regMatch?: RegExp