0.8.5 • Published 8 years ago

axis-api v0.8.5

Weekly downloads
48
License
-
Repository
-
Last release
8 years ago

AxisAPI Documentation

The AxisAPI is used to establish a connection with a QlikSense server and get information from it. It is used in tandem with Qlik's Engine API to create objects, make selections, and anything else you would do inside of a native QlikSense application.

The following snippet shows how to:

1) Connect to the Sense Server

2) Open an application

3) Create a session object

var appId = 'e96629fd-902d-4e33-9bf2-12a8cf8de3e7';
		
	var global = axisAPI.global()
		.host('sense.axisgroup.com')
		.isSecure(false)
		.sessionId(appId)
		.connect();
	var app = axisAPI.app()
		.appId(appId)
		.global(global)
		.open();
		
	var prop =  {
            'totalSales':{ qValueExpression: '=sum([Sales Amount])'},
            'qInfo':
                {
                'qType': 'qValueExpr',
                }
        };
	var obj = axisAPI.object()
		.app(app)
		.prop(prop)
		.on('create',function(object){
		})
		.on('paint',function(object){
		})
		.create();
		
	var obj2 = axisAPI.object()
		.app(app)
		.qId('qZPdytp')
		.on('create',function(object){
		})
		.on('paint',function(object){
		})
		.create();

Refer to the axisAPI Wiki to see the details about each step in the process. There are also training exercises to help build your understanding.

0.8.5

8 years ago

0.8.4

8 years ago

0.8.3

8 years ago

0.8.2

8 years ago

0.8.1

8 years ago

0.7.9

8 years ago

0.7.8

8 years ago

0.7.7

8 years ago

0.7.6

8 years ago

0.7.5

8 years ago

0.7.4

9 years ago

0.7.3

9 years ago

0.7.2

9 years ago

0.7.1

9 years ago

0.7.0

9 years ago

0.6.0

9 years ago

0.5.1

9 years ago

0.5.0

9 years ago