Dynamic multi header column in Kendo MVC grid

394 views Asked by At

I want to create a grid from the following model.

public class ProgramBreakdown
{
    public string ProgramName{ get; set; }
    public List<MonthwiseInfo> MonthwiseProgramInfo { get; set; }
}

public class MonthwiseInfo
{
    public string Month { get; set; }
    public int TotalUsers { get; set; }
    public int ActiveUsers { get; set; }
    public double ActivePerc{ get; set; }
}

enter image description here

Is there a way to dynamically add/define multi-header columns like shown in the image in Kendo MVC - server side or client side?

0

There are 0 answers