If I add a hierarchy to my grid, is there a way to change the totaling source?
My dataset will have its own totals and I want to plug them in instead of using the grids aggregation for totals, is this possible?
Hello, At this moment there is no way to manipulate the totals at all. I suppose that you use FlatDataSource. The using of the hierarchy descriptors produces a creation of the total columns. Do you use any hierarchy descriptors? It’s possible to expose your own totals into a separate dimension and then show the data side by side but I’m not sure that will satisfy your needs.
Regards. Plamen.
I am using a flatdatasource, but I want that totally to look/feel just like it would if it was driven from a hierarchy.
There is no hook where I can override something in the measureviewmodel?
E.g. can I somehow tap into the MeasureAggregator? The enum has a selection for Unknown that I thought I might be able to create a custom aggregator for...
IMeasureViewModel mvm = this.dataSelector.DataSource.CreateMeasureViewModel(new Measure("MyCalc", "MyCalcCaption", "MyCalc", "MyCalc", "Measures", MeasureAggregator.SomCustomAggregation));
this.dataSelector.DataSource.Measures.Clear();
this.dataSelector.DataSource.Measures.Add(mvm);