This question is locked. New answers and comments are not allowed.
We have data similar to the following:
[TestType] | [TestGroup] | [Prefix] | [Result] | [ResultWithPrefix]
-----------------------------------------------------------------------------------------------------------------
Test123 | TestGroupA | < | 2.0 | < 2.0
-----------------------------------------------------------------------------------------------------------------
TestABC | TestGroupA | NULL | 3.45 | 3.45
-----------------------------------------------------------------------------------------------------------------
Test321 | TestGroupB | < | 0.05 | < 0.05
-----------------------------------------------------------------------------------------------------------------
If we setup up the Pivot Grid to display TestType (row), TestGroup (column), Result (Values) the data displays as expected however we need to display the Prefix data immediately before the result within the Pivot Grid. One way to achieve this is to concatenate the Prefix and Result columns in our database query however it seems that displaying the ResultWithPrefix column within the Pivot Grid results in either the word ERROR or a bunch of 1 and 2s displayed rather than the correct values. We assume that this is because the Pivot Grid is trying to perform numeric calculations on the Values data. Is there an attribute or setting we can specify within the xaml that will allow us to display this data correctly?
[TestType] | [TestGroup] | [Prefix] | [Result] | [ResultWithPrefix]
-----------------------------------------------------------------------------------------------------------------
Test123 | TestGroupA | < | 2.0 | < 2.0
-----------------------------------------------------------------------------------------------------------------
TestABC | TestGroupA | NULL | 3.45 | 3.45
-----------------------------------------------------------------------------------------------------------------
Test321 | TestGroupB | < | 0.05 | < 0.05
-----------------------------------------------------------------------------------------------------------------
If we setup up the Pivot Grid to display TestType (row), TestGroup (column), Result (Values) the data displays as expected however we need to display the Prefix data immediately before the result within the Pivot Grid. One way to achieve this is to concatenate the Prefix and Result columns in our database query however it seems that displaying the ResultWithPrefix column within the Pivot Grid results in either the word ERROR or a bunch of 1 and 2s displayed rather than the correct values. We assume that this is because the Pivot Grid is trying to perform numeric calculations on the Values data. Is there an attribute or setting we can specify within the xaml that will allow us to display this data correctly?