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...
angelflight
6 years agoFrequent Visitor
Thank you so much for your response. I had actually already found your repo and had integrated that code, but since there are no segments in the metadata object, it doesn't do the fetch. I tried removing the check to see if the segments exist:
if (options.dataViews[0].metadata.segment) {
When I do that, this.host.fetchMoreData() evaluates to true, but I still only get 1,000 rows.
What's weird is that I only have 18,100 rows. I have tried setting the dataReductionAlgorithm count to 20,000 and also to 100,000 and then, based on your suggestion, to 6,000 to see if it will force the creation of the segments, but it does not.
Any additional thoughts you may have would be appreciated.
ThibaudGD
4 years agoFrequent Visitor
Have you found the solution ? Because I'm facing the same issue