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

createTable method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.

qlik.app.createTable(dimensions, measures, options)

Defines a hypercube for a table and is the entry point to the Table API. It creates a table object that wraps the hypercube.

Version history

Version history
Version state Details
Introduced 2.1

Parameters

dimensions

Type: Array.<String|Object>

Dimensions to use.

Should, for each entry, be a field name or a NxDimension structure.

measures

Type: Array.<String|Object>

Measures to use.

Should, for each entry, be an expression or a NxMeasure structure.

options

Type: Object

Optional.

Options to set.

Returns

A QTable, which is initially empty but that eventually contains data. The table object is updated when selection state changes.

Example

var users = app.createTable(["FirstName", "LastName"], ["Count(Case Id)"],{rows:200});

 

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!