Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dm-p
Super User
Super User

How Do We Structure SelectionIDs to Store objects in the Data View Mapping for Series or Measure?

Hi folks,

I'm implementing a visual with similar behaviour to the clustered column chart core visual and have some very similar data bindings for colour in the properties pane. This should ideally bind as per the clustered column chart, i.e.:

  1. If the user provides a series (Legend) field then series values are enumerated and added to the pane.
  2. If the user provides no series (Legend) field but multiple measures, then the measure values are enumerated and added to the pane.
  3. If none of the above are hit, then categories are bound to the pane.

I can actually get the above to list in the pane for each situation, but my challenge is pushing the selectionId into the data view for scenarios 1 and 2 when I select a colour from the palette and persisting the selected value.

The only one that works reliably is 3, which is as per the example. In this case, the generated selectionId is getting pushed into categorical.categories[n].objects as expected.

My dataViewMapping is configured as follows:

"categorical": {
    "categories": {
        "for": {
            "in": "category"
        }
    },
    "values": {
        "group": {
            "by": "series",
            "select": [
                {
                    "bind": {
                        "to" :"measure"
                    }
                }
            ]
        }
    }
}

In the case of where I need to generate a selectionId .withSeries() and/or .withMeasure(), I can get a valid selectionId for the combination of fields.

However, using it with objectEnumeration.push does not put it into the dataView, which I assume should push it into categorical.values[n].objects at the appropriate location. This doesn't seem to happen... or end up anywhere in the dataView that I can find.

Can someone shed any light on how I should be approaching/managing this? It's clearly possible to do but maybe I'm thinking about it the wrong way.

Thanks very much!

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




1 REPLY 1
v-evelk
Employee
Employee

Hi Daniel,

 

You could check the source code of Mekko Chart because it has similar cases.

Please check there and there.

 

Kind Regards,

 

Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.