Ashley Rodan
09/11/2025, 2:56 AMHow do you retrieve a calculated total (roll-up) based on the correspondingdata provided using theDataViewFacadehook to load a widget's data? There appear to existuseInsightWidgetDataViewwithin the `dataView`'sbuckets, but those simply referencedefinitionobjects which include information about the total, but not the actual calculated value.ITotal
Alternatively, is there a different way of loading/processing this data when using a custom provider for an insight widget?
kapa.ai
09/11/2025, 2:56 AMMauricio Cabezas
09/11/2025, 1:05 PMconst totals = facade.totals();
you should use
const totals = facade.dataView.totals;
Please, give it a try and let us to known.Ismail Karafakioglu
09/18/2025, 11:32 AM