Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am creating new custom visual with below reference link.
Link : https://blogs.msdn.microsoft.com/tsmatsuz/2016/09/27/power-bi-custom-visuals-programming/
I am getting error while following his steps while updating kind propery in below code snipet.
Error : "instance.dataRoles[0].kind is not one of enum values : Grouping, Measure, GroupingOrMeasure."
Code Snipper :
"dataRoles": [
{
"displayName": "Summarize Category",
"name": "myCategory",
"kind": 0
},
{
"displayName": "Measure Data",
"name": "myMeasure",
"kind": 1
}
],
Please do me helpful.
Solved! Go to Solution.
The new API has changed the kind property.
"dataRoles": [
{
"displayName": "Summarize Category",
"name": "myCategory",
"kind": "Grouping"
},
{
"displayName": "Measure Data",
"name": "myMeasure",
"kind": "Measure"
}
],
The new API has changed the kind property.
"dataRoles": [
{
"displayName": "Summarize Category",
"name": "myCategory",
"kind": "Grouping"
},
{
"displayName": "Measure Data",
"name": "myMeasure",
"kind": "Measure"
}
],
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |