We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2ce78 commit 98b5ffdCopy full SHA for 98b5ffd
components/pivotgrid/templates.md
@@ -55,11 +55,12 @@ All template components expose an optional `Context` parameter. Set it in scenar
55
<DataCellTemplate Context="dataCellContext">
56
@{
57
var c = (PivotGridDataCellTemplateContext)dataCellContext;
58
- }
+
59
if (c.Value != null)
60
{
61
- @( ((decimal)c.Value).ToString("c2") )
+ @( ((decimal)c.Value).ToString("C2") )
62
}
63
+ }
64
</DataCellTemplate>
65
<RowHeaderTemplate>
66
0 commit comments