interface IMeasureable {
    dateOptions?: IDateOptions;
    dimension?: Dimension | IDimensionLike;
    filterArray?: IFilter[];
    measure: Measure | IMeasureLike;
    time?: any;
}

Properties

dateOptions?: IDateOptions

Optional if this measure's axis.timeAxis property is true, ignored otherwise. Has the following child properties. Either zeroDateCol or ZeroDayVisitTag may be specified, but not both.

Used to pivot a resultset into multiple series. Generally an augmented Dimension

filterArray?: IFilter[]

Generally an augmented Measure

time?: any

"date" indicates this measure is date-based. "time" indicates it is time-based.

Generated using TypeDoc