qlik-demo-team / qdt-components

React Components to be used with Angular 10, React 16 and Vue 2. Connects with the Capability API and Engine API.
MIT License
92 stars 50 forks source link

QdtTable: qMatrix shows only 1000 values #115

Closed roysahil closed 4 years ago

roysahil commented 5 years ago

Using the qdt-components, I have created a grid in my React project. The issue is that source data has more then 25000 rows but my application is rendering only 1000 rows. Probably due to the hypercube limitation. But is there a way to increase its limit? Let me know what changes I should make to get all the rows in my table.

roysahil commented 5 years ago

Would appreciate any suggestion or solution for this. This is slowly becoming a show stopper for my project at work. Thanks in advance.

yianni-ververis commented 4 years ago

there is not way of changing the limits in the hypercuve results.

What you can do is have a loop to get all data like this

https://community.qlik.com/t5/Qlik-Design-Blog/Getting-all-data-cells-from-app-createCube/bc-p/1470928#M4912

yianni-ververis commented 4 years ago

I have added 'getDataInterval' that gets all data based on the given seconds for looping, in QdtMapBox

https://github.com/qlik-demo-team/qdt-components/blob/master/docs/components/QdtMapBox.md

let me know where do you need it

roysahil commented 4 years ago

I have added 'getDataInterval' that gets all data based on the given seconds for looping, in QdtMapBox

https://github.com/qlik-demo-team/qdt-components/blob/master/docs/components/QdtMapBox.md

let me know where do you need it

Thank you for responding. This looks promising. Can this be done for QdtTable component please?

fkabinoff commented 4 years ago

It's bad for performance and user experience to render so many things rows of a table in the dom at one time. QdtTable includes pagination for this reason.