Hello, i was wondering if it is possible to bind and display data in a column from a List/Array of data like this:
public record Item
{
public string Name { get; set; }
public List<int> CostsAtMonths { get; set; } = new();
public int[] CostsAtMonths { get; set; }
}
Then have it displayed in in a TreeList with a column for each month of the year, where each column points to an item of the list/place in an array like this: