selectRange method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
backendApi.selectRange(qRanges, qOrMode)
Selects values in this object using ranges.
Information noteOnly applicable to hypercubes.
Version history
Version state | Details |
---|---|
Introduced | 1.0 |
Parameters
qRanges
Type: Array
Array of ranges to select.
qOrMode
Type: Boolean
If true only one of the measures needs to be in range.
Example
var range = {
"qMeasureIx": 1,
"qRange": {
"qMin": 10,
"qMax": 100,
"qMinInclEq": true,
"qMaxInclEq": true
}
};
self.backendApi.selectRange( [range], false);