Skip to main content Skip to complementary content

getStackedData method

getStackedData(qPages, qMaxNbrCells)

Method used to get stacked data from the Qlik engine for this object. Only works for hypercubes with qMode = S.

Since:
  • 2.0

Parameters

Name Type Description
qPages Array An array of request page objects.
qMaxNbrCells Number Maximum number of cells at outer level.

Returns

Returns a promise of stack data pages.

Tip noteFor more information regarding a promise, see http://docs.angularjs.org/api/ng.$q.

Examples

Example:  

var requestPage = {
		qTop : 0,
		qLeft : 0,
		qWidth : 10,
		qHeight : count
	};

this.backendApi.getStackData([requestPage], 1000).then(function(dataPages) {
	....
});

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!