createTable method
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 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});