TagHistoryProvider.browse and data pagination

Hi

I’ve created a custom TagHistoryProvider, and I’m trying to get data pagination to work when returning data from the TagHistoryProvider.browse method. If I look at the SDK documentation for Results, then it looks like it should be implemented this way:

    if (pagSize == data.size()) { // if the returned data size == pageSize, then there is a good chance there are more data pages.
            currentContinuationPoint += pagSize;
            result.setContinuationPoint(currentContinuationPoint.toString());
            result.setTotalAvailableResults(currentContinuationPoint + pagSize); 
        }

The problem is that when I try to load data via the perspective power chart, then it only calls the browse function once.

Is data pagination not supported by the browse function? or I’m I missing something?