Hey!
How to align the values in the pivot grid cells?
The text seems to be centered by default but i found no obvious property to change this behaviour. I need right alignment.
In the Silverlight version of this control they seem to be aligned to the right by default.
Cheers,
Jens


I have a column group that contains 5 rows. I wish to hide the headers of the last 4 rows. I did put in the following code in the viewcellformatting event (below, but it did not hide the column group rows. My headertext on those rows are empty, and the images are attached. "Capture2.jpg" is the image before using the viewcellformatting event code. "Before.jpg" is the event code below being implemented, and "result.png" is what I am attempting to achieve. Thanks in advance for any help.
Private Sub RadGridView1_ViewCellFormatting(sender As Object, e As CellFormattingEventArgs) Handles RadGridView1.ViewCellFormatting
If TypeOf sender Is GridHeaderCellElement Then
e.CellElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed
e.CellElement.AutoSize = False
e.CellElement.MaxSize = New Size(0, 0)
e.CellElement.MinSize = New Size(0, 0)
e.CellElement.Size = New Size(0, 0)
End If​

I'm not databinding, just trying to set the timepicker to null. I can set the nulltext property, but how to set the value to null?
Later
Art



