Hello,
Is there any way on XamPivotGrid to hide or remove totals that I don't need?
Thank you.
Hi,
The only way is to set total column’s width to 0. By this way you will hide the column from UI, but it will still exist in data source.
Regards,Todor
Hi Todor,
Can you provide me with the code sample how to set total column's width to 0? I tried to use this property
pivotGrid.GridLayout.Columns[i].ColumnWidth
but it's read only. And is there any way to hide the total rows as well?
Thank you,
Irina
Hi Irina
It is my mistake, you are right it is read only property. So, in that case I think you have not options to hide totals.
I will try to make setter public for next SR.
Regards
Todor
Irina,
I will create a private support case for you and link it to the Development Issue so you will be notified when this fix is released.
Thanks,
Hi
Unfortunately current version does not support hiding columns or rows. We have planed this feature for 11.1 version of control.
Where is this feature in 11.1, now that it has launched
That was exactly what I needed, thank you
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