Skip to main content Skip to complementary content

getStackData method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.

backendApi.getStackData(qPages, qMaxNbrCells)

Gets stacked data from the Qlik associative engine for this object. Only works for hypercubes with qMode = S.

Version history

Version history
Version state Details
Introduced 2.0

Parameters

qPages

Type: Array

An array of request page objects.

qMaxNbrCells

Type: Number

Maximum number of cells at outer level.

Returns

A promise of stack data pages.

Tip noteFor more information regarding a promise, see The Promise API.

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!