Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 dimension
Please anyone let me know what I am missing.
Thanks & Regards,
Manoj Prabu S
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
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