Early Access: The content on this website is provided for informational purposes only in connection with pre-General Availability Qlik Products.
All content is subject to change and is provided without warranty.
Skip to main content Skip to complementary content

createCube method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.

qlik.app.createCube(qHyperCubeDef, callback)

Defines a hypercube and registers a callback to receive the data.

Version history

Version history
Version state Details
Introduced 1.0

Parameters

qHyperCubeDef

Type: Object

Hypercube definition.

callback

Type: Function

Optional.

Callback method. Registers a callback that is executed every time data is returned.

Parameter will contain a qHyperCube.

Returns

A promise of an object model.

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

Example

app.createCube({
	qDimensions : [{
		qDef : {
			qFieldDefs : ["FirstName"]
		}
	}, {
		qDef : {
			qFieldDefs : ["LastName"]
		}
	}],
	qMeasures : [{
		qDef : {
			qDef : "1"
		}
	}],
	qInitialDataFetch : [{
		qTop : 0,
		qLeft : 0,
		qHeight : 20,
		qWidth : 3
	}]
}, function(reply) {
	var str = "";
	$.each(reply.qHyperCube.qDataPages[0].qMatrix, function(key, value) {
		str += '<li>' + value[0].qText + ':' + value[1].qText + '</li>';
	});
	$('#list').html(str);
	;
});

Learn more

 

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!