I would like to show 2 numbers:
- total elements (with filtered dimension)
- total elements (total without that specific dimension filter)
Total elements (with filtered dimension) works:
var numRecords = cf.groupAll();
DimFiltered = cf.dimension(...).filter(...); // filter function will be automatically applied
numberDisplayElem
.group(numRecords)
.valueAccessor(x => x);
Total elements (without filter automatically applied) does not work:
How can get the total number without the filter from dimension "DimFiltered" as another number?