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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi
I am using Custom Visual Github to create custom visual.
Max no of data points for categories available for me in update function is 1000 only.
Kind help me how to get all the data points available in update function.
Capabilities.json is as follows.
{ "dataRoles": [ { "displayName": "Category Data", "name": "category", "kind": "Grouping" }, { "displayName": "Measure Data", "name": "measure", "kind": "Measure" } ], "dataViewMappings": [ { "categorical": { "categories": { "for": { "in": "category" }, "dataReductionAlgorithm": { "top": {} } }, "values": { "select": [ { "bind": { "to": "measure" } } ] } } } ] }
Solved! Go to Solution.
You'll need to specify dataReductionAlgorithm in capabilities.json. Here is a similar thread for your reference.
You'll need to specify dataReductionAlgorithm in capabilities.json. Here is a similar thread for your reference.
Hi Folks
Any help on this?