Reputation:
I have a pivot collection that has a numeric facet, however when the value is being displayed it keeps rounding to the nearest whole number.
Is there a way in which I can show the full number with the decimal places?
Upvotes: 1
Views: 144
Reputation: 865
I am assuming that you are talking in CXML? If so, there is a Format attribute you can set on the facet category. It only works for DateTime
and Numeric
, but that will work in your case. The accepted format strings are .NET format strings.
Check here for full documentation of the PivotViewer CXML Schema
Upvotes: 0