selectRange method
selectRange(qRanges, qOrMode)
Select values in this object using ranges.
- Since:
-
- 1.0
Information noteOnly applicable to hypercubes.
Parameters
| Name | Type | Description |
|---|---|---|
| qRanges | Array | Array of ranges to select. |
| qOrMode | 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);