Completed
Last Updated: 23 Jul 2015 13:06 by ADMIN
ADMIN
Stefan
Created on: 07 Jul 2015 06:35
Category: PivotGrid
Type: Bug Report
1
FIX. RadPivotGrid - cannot set the Number Format (string format) of calculated field
To reproduce:
- Add calculated field
- Try to set its number format, by clicking the Number Format option in the context menu in the field list (see image)

Workaround:
 Private Sub RadPivotGrid1_CellFormatting(sender As Object, e As UI.PivotCellEventArgs) Handles RadPivotGrid1.CellFormatting
        If e.CellElement.Column.Name = "Commission" Then
            e.CellElement.Text = String.Format(System.Threading.Thread.CurrentThread.CurrentUICulture, "{0:C}", e.CellElement.Value)
        End If
    End Sub
Attached Files:
0 comments