I have a data as given below. Kindly let me know, how do I group on two column values. If it is a single column values, I can do it. Also lot of forms says, column evaluator property will solve this. I have no idea. Kindly let me know, how to achieve this below functionality
RawData
Product
Type
Name
Category
Brand
Zone
Value
Sales
P1
1
Product-1
C1
B1
Z1
100
10
2
200
20
3
300
30
P2
Product-2
B2
P3
Product-3
B3
Z2
12
40
24
50
36
Output Required
GroupHeader: Z1 + B1
'
GroupHeader: Z1 + B2
Hello Hariharan,
I am just checking about the progress of this issue. Did you solve your issue accordingly to the information that I provided you?
Did you test the sample I have send to you? Is that what you looking for ?
Let me know if you need any further assistance.
Thank you for using Infragistics Components.
As far I understand your scenario you want to GroupBy your UltraGrid based of two columns. I have created a sample for you that illustrates that behavior. Pleas look at the sample and let me know if you have any further questions.
I think "column evaluator property" is a column that combines the two values together:
public string ZoneAndBrand
{
get { return Zone + " + " + Brand; }
}