Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limited Column Number #27

Open
undsoul opened this issue Oct 1, 2019 · 1 comment
Open

Limited Column Number #27

undsoul opened this issue Oct 1, 2019 · 1 comment

Comments

@undsoul
Copy link

undsoul commented Oct 1, 2019

Hi Ivan ,

Is there a way to modify "10 column rule" in jscript ?

One of my customer is willing to use with 15 column .

Thanx in Advanced,
Br,

@iviasensio
Copy link
Collaborator

Hi undsoul

Sure. Open PLSmartPivot.js
Modify the parameters (at the line 13):
qInitialDataFetch : [{
qWidth : 10, replace for 16 (15 measures + 1 dimension)
qHeight : 1000 replace for 625 (10.000 / 16 = 625)
}]
If you need up to 15 measures modify the parameters (at line 27):
measures : {
uses : "measures",
min : 1,
max : 9, replace for 15
},
Note that qlik extensions work with an interface with the engine that only accepts a matrix of data with a maximum of 10k cells.
The code of the extension can request for new data if you have more than 10k cells, but only 10 loops is admited.
So real maximum of data accepted by an extension is 100k.

Regards

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant