The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Is it possible to get highlighted data from the table with only one column inside of custom visual as below?
Inside of the custom visual, I have one dataRole of type GroupingOrMeasure as below.
"dataRoles": [
{
"displayName": "Fields",
"name": "values",
"kind": "GroupingOrMeasure"
}
]
I tried using mapping as
"dataViewMappings": [
{
"categorical": {
"categories": {
"select": [{ "bind": { "to": "values" } }]
},
"values": {
"select": [{ "bind": { "to": "values" } }]
}
}
}
]
but I was not able to get highlighted values. I would only get categories with the list of all product ID's from the picture. Can somebody explain to me why is that?
I saw that I'm not able to get highlighted values on the table mapping, and because I only have one field, I believe I'm not able to use the matrix mapping. So, I was wondering what I could use to get highlighted values?