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?

link|improve this question

feedback

1 Answer

I am assumming 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 a full documentation of the schema : PivotViewer Schema

link|improve this answer
The format for currency doesn't show the decimal points. – kurtnelle Nov 21 '11 at 18:08
What format string are you using? – Tony Champion - CDS Nov 23 '11 at 13:29
Champion, the format string is {0:C} – kurtnelle Nov 23 '11 at 21:14
The format string you should use is just "c", not "{0:C}" in this case. You omit the placeholder because there is only one, and it's not necessary. It's equivalent to calling 1.ToString("c"); – Scott Anderson Nov 29 '11 at 20:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.