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
ngann93
Frequent Visitor

Unable to create unique selectionID's

Hi I am trying to create a scatter chart visualisation with circles as datapoints. For this, I wanted to create unique selectionId for each elements. But I am unable to do so. Below is my capabilities.json :

{
"dataRoles": [
{
"displayName": "Category Data",
"name": "category",
"kind": "Grouping"
},
{
"displayName": "Legend",
"name": "group on",
"kind": "Grouping"
},
{
"displayName": "Measure Data",
"name": "dataValue",
"kind": "Measure"
}
],
"dataViewMappings": [
{
"conditions": [
{
"category": {
"max": 1
},
"measure": {
"max": 1
}
}
],
"categorical": {
"categories": {
"for": {
"in": "category"
}
},
"values": {
"group": {
"by":"group on",
"select": [
{
"for":{
"in": "dataValue"
}
}
]
}
}
}
}
]

 and selection creation id's code is :

let selectionId = host.createSelectionIdBuilder()
.withSeries(categorical.values,valueGroupsValue)
.createSelectionId();

 

It creates same ID for all the data elements. So when i click any element on my chart all the elements properties change.

Please help. 

 

Sorry for the horrible format of capabilities code. Can't edit it.

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@ngann93,

 

You may take a look at https://github.com/Microsoft/PowerBI-visuals-core/blob/master/src/Clients/Visuals/cartesian/scatterC... first, though it is deprecated. For tips about debugging your custom visual, see the debugging guide.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

Top Kudoed Authors