Query |
Solution |
I have a Grid with FreezeHeaders set to True. If I set ShowCalculationsAsColumns = False -> the first Row with data is also frozen, so not only the column headers as intended. |
We can understand your scenario. In our current architecture, if you set the ShowCalculationsAsColumns property as false calculation column consider as a row in PivotGridControl. In order to overcome this scenario, you can use the FrozenCount property instead of FreezeHeaders property.
Code example
Me.pivotGridControl1.TableControl.FreezeHeaders = False
Me.pivotGridControl1.TableModel.Rows.FrozenCount = 3
|
There is also something strange with the Left Border of the row headers (see attached image of my project) -> this also happens in the sample I send above if you run the code. In the sample if you scroll it disappears, but scroll all the way down and slowly up again (a few lines at the time) it reappears...
In my project it does not disappear with scrolling...
|
We can reproduce your scenario at our end so we have created a separate incident for this reported scenario. Please follow-up with that incident for further assistance.
Direct-trac link:
|