Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
7 | |
7 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |