Hi,
How can i get the width of the Row Header? in the case of the sample below: All sellers?
Thanks
Nazha
It is normal that the text is truncated, because the control maxWidth is set. What I can offer in your case is this one:
pivotGrid.GridLayout.PrivateColumnsForRowPanel[index].ColumnWidth = 200;
Hope this is what you need.
Regards
M. Yovchev
Thanks it worked.
But i still have one issue. My Row Header Cells contain Brand Names and sometimes one of the brands name is too long. So i want the Row Header Cells to have a maximum width of 200 and the user if s/he wants to see the full brand name it will resize the column manually.
So when i set the width to 200 and i try to resize the long brand name gets truncated. How can i keep the full length but show only a part of it?
Thanks,Nazha
Hi Nazha,
You can try these:
pivotGrid.GridLayout.RowHeaderCells[index].Control.ActualWidth
or
pivotGrid.GridLayout.RowHeaderCellsProvider.GetCell(rowIndex, columnIndex).Control.ActualWidth
Regards,