Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The documentation mentions a hypercube can be in mode S for straight,P for Pivot and T for tree. I have been able to get both straight and pivot to work but have not been able to figure out tree mode. I thought it would be like the others where I just change the qMode property of the hupercube def to "T" but that doesn't populate any of the datapage props on the hypercube result.
Hi @devan9876 this could help you, try to have a look and let me know https://community.qlik.com/t5/Design/Creating-a-Pivot-Table-with-the-new-GetHyperCubeTreeData-method...
I'm not sure if that helps.
I'm defining my property panel using the "dimensions" property panel component as shown on the qlik.dev tutorial. The example you gave seems to be hard-coding the dimensions. Is that component not compatible with a hypercube in tree mode?
https://qlik.dev/extend/property-panel-basics/extensions-reusing-properties/
// Define what the properties panel looks like
definition: {
type: "items",
component: "accordion",
items: {
dimensions: {
uses: "dimensions"
},
measures: {
uses: "measures"
},
sorting: {
uses: "sorting"
},
appearance: {
uses: "settings",
}
}
},