I am working on custom visual of venn diagram because it is not provided by powerBi itself. But Facing Issue because of my data have 1 million rows and I am getting only 30000(maximum). Because of this limitation my visual is always rendering wrong.
Is I am doing somthing wrong in capabilities json please have a look below. Please help I am struck badly.
{
"dataRoles": [
{
"displayName": "SetA Data",
"name": "setA",
"kind": "Grouping"
},
{
"displayName": "SetB Data",
"name": "setB",
"kind": "Grouping"
},
{
"displayName": "Criteria Data",
"name": "criteria",
"kind": "Grouping"
}
],
"dataViewMappings": [
{
"categorical": {
"categories": {
"select": [
{ "for": { "in": "setA" } },
{ "for": { "in": "setB" } },
{ "for": { "in": "criteria" } }
],
"dataReductionAlgorithm": {
"top": {
"count": 100000
}
}
}
}
}
]
}
Thanks for any kind of help in advance.