Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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" } ],
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.