Hi,
I have a model like below:
class Foo{
public int id {get; set;}
public string name {get; set;}
public List<int> values {get; set;}
}
I would like to display the model with telerik grid as follow:
Id Name Jan-21 Feb-21 Mar-21
1 name1 10 20 30
2 name2 20 30 40
The Id is mapped to Foo.Id; Name is mapped to Foo.Name; Jan-21, Feb-21, Mar-21 are dynamic generated(in the future it will change) and the value is from the Foo.values.
I checked all the columns' example, telerik seems doesn't support such scenario. The model's field is supposed to be static and not supports List property.
Does anyone have a good idea to accomplish the feature? Many thanks in advance.
Best regards,
Ping