Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello!
I've tried to implement data custom property with simple usage.
data: {
uses: "data"
}
But it's not documented and It's hard to find how to hide alternative option (dimensions and measures). I've tried to analyze qvangular module, but no help. May somebody has way how to get all not documented properties and its options.
Thank you.
Hi @nikitapotapov , are you trying to use data property and show dimensions and measures?
Anyway, this is a very simple example about how to add dimensions and measure to data property. As you mentioned, this is not well documented.
definition: {
type: "items",
component: "accordion",
items: {
data: {
uses: "data",
items: {
dimensions: {
items: {
"nullSuppression": {}
},
min:1,
max:1
},
measures: {
min:1,
max:1
}
}
},
}
Hi @nikitapotapov , are you trying to use data property and show dimensions and measures?
Anyway, this is a very simple example about how to add dimensions and measure to data property. As you mentioned, this is not well documented.
definition: {
type: "items",
component: "accordion",
items: {
data: {
uses: "data",
items: {
dimensions: {
items: {
"nullSuppression": {}
},
min:1,
max:1
},
measures: {
min:1,
max:1
}
}
},
}