Hello,
Is there any way on XamPivotGrid to hide or remove totals that I don't need?
Thank you.
That was exactly what I needed, thank you
Hi
There is not build in property for hide totals, but there is a functionality for hide columns and rows. So using this feature you can easy to hide the columns you don’t want to be visible. Below is sample how you can manipulate columns visibility.
pivotGrid.LayoutLoaded += (s, args) =>{
foreach (PivotDataColumn c in pivotGrid.DataColumns)
{
if (c.IsTotal)
c.IsVisible = false;
}
};
RegardsTodor
Where is this feature in 11.1, now that it has launched
Unfortunately current version does not support hiding columns or rows. We have planed this feature for 11.1 version of control.
Regards
Todor