Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlik Sense extension is not recognizing the qInitialDataFetch settings.

I have an extension (using AngularJS).  I have the following for my initial properties:

var initialProperties = {

        qHyperCubeDef: {

            qDimensions: [],

            qMeasures: [],

            qInitialDataFetch: [{

                qWidth: 20,

                qHeight: 250

            }]

        }

    };

The extension still only loads 50 rows, and 2 columns of data into the hypercube.  Do I need to set this somewhere else also?

I am working in Qlik Desktop.

Thanks.

1 Solution

Accepted Solutions
Alexander_Thor
Employee
Employee

If you change any of the initialProperties make sure you remove and add the object from the sheet as those are only set on creation time.

View solution in original post

2 Replies
Alexander_Thor
Employee
Employee

If you change any of the initialProperties make sure you remove and add the object from the sheet as those are only set on creation time.

Not applicable
Author

Thank you!