Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Manoj_Prabu
Partner - Creator
Partner - Creator

Trying to get qData from qStackedDataPages in qMode "K"

Hi Community,

I am trying to create an extension with qMode "K" (DATA_MODE_PIVOT_STACK). when I add 2 dimension and 1 measure, the second dimension is not included in the qData in the qStackedDataPages.

 

initialProperties: {
				qHyperCubeDef: {
					qDimensions: [],
					qMeasures: [],
					qMode: 'K',
					qMaxStackedCells: 2,
					qInitialDataFetch: [
						{
							qWidth: 2,
							qHeight: 5000,
						},
					],
				},
			},

 



StackData which is not including 2nd dimensionStackData which is not including 2nd dimension

Please anyone let me know what I am missing.

Thanks & Regards,
Manoj Prabu S

Labels (3)
1 Solution

Accepted Solutions
Manoj_Prabu
Partner - Creator
Partner - Creator
Author

Hi Community,

The issue was resolved by changing the initialProperties to the following

initialProperties: {
				qHyperCubeDef: {
					qDimensions: [],
					qMeasures: [],
					qMode: 'K',
					qAlwaysFullyExpanded: true,
					qMaxStackedCells: 5000,
					qInitialDataFetch: [{
						qWidth: 20,
						qHeight: 500,
					}],
				},
			}

Included qAlwaysFullyExpanded & qMaxStackedCells: 5000

Thanks & Regards,
Manoj Prabu S

View solution in original post

1 Reply
Manoj_Prabu
Partner - Creator
Partner - Creator
Author

Hi Community,

The issue was resolved by changing the initialProperties to the following

initialProperties: {
				qHyperCubeDef: {
					qDimensions: [],
					qMeasures: [],
					qMode: 'K',
					qAlwaysFullyExpanded: true,
					qMaxStackedCells: 5000,
					qInitialDataFetch: [{
						qWidth: 20,
						qHeight: 500,
					}],
				},
			}

Included qAlwaysFullyExpanded & qMaxStackedCells: 5000

Thanks & Regards,
Manoj Prabu S