Kendo ui Kendo MVC网格中的动态多标题列

Kendo ui Kendo MVC网格中的动态多标题列,kendo-ui,kendo-grid,kendo-asp.net-mvc,Kendo Ui,Kendo Grid,Kendo Asp.net Mvc,我想从以下模型创建一个网格 public class ProgramBreakdown { public string ProgramName{ get; set; } public List<MonthwiseInfo> MonthwiseProgramInfo { get; set; } } public class MonthwiseInfo { public string Month { get; set; } public int Tota

我想从以下模型创建一个网格

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; }
}
公共类程序分解
{
公共字符串程序名{get;set;}
公共列表MonthwiseProgramInfo{get;set;}
}
公共类MonthwiseInfo
{
公共字符串月份{get;set;}
公共int TotalUsers{get;set;}
public int ActiveUsers{get;set;}
公共双ActivePerc{get;set;}
}


是否有一种方法可以动态添加/定义多标题列,如Kendo MVC服务器端或客户端中的图像所示

你有没有想过如何做到这一点?我也需要这个。你知道怎么做吗?我也需要这个。你知道怎么做吗?我也需要这个。