Forum Discussion
angelflight
6 years agoFrequent Visitor
Developing a custom visual but not getting all the rows in the dataset
I'm building a custom visual. The dataset is a csv file with 18,100 rows and 6 columns. I'm loading the data using a table data row mapping as shown below. When I look at the options.dataViews[0].tab...
stefanmmarek
4 years agoNew Member
Hi,
i had a similar issue and found out that depending on the mapping you need to set the supported datalength:
"dataViewMappings": [
{
"table": {
"rows": {
"select": [
{
"for": {
"in": "parameter"
}
},
{
"for": {
"in": "value"
}
}
],
"dataReductionAlgorithm": {
"top": { "count": 5000000 }
}
}, "rowCount": { "supported": {"max": 5000000}}
}
}
now i always get all rows since it will never exceed 5 mio đ