runQuery(query: Query Object)
[starting from version: 1.6]
Runs a query with specified rows
, columns
, measures
and reportFilters
from Slice Object and displays the result data. Use this method to rearrange hierarchies on the axes or to compose a new report based on the current data source.
Parameters
query
– Query Object. It contains rows
, columns
, measures
, and reportFilters
from Slice Object.Example
var slice = { rows: [ {uniqueName: "Country"} ], columns: [ {uniqueName: "Color"} ], measures: [ {uniqueName: "Price"} ] }; flexmonster.runQuery(slice);
Open the example on JSFiddle.
See also