I have a datasource that I am trying to graph that looks like :
@(Html.Kendo().Chart(Model)
.Name("chart")
.Title("Site Tag Values")
.DataSource(dataSource => dataSource
.Group(group => group.Add(model => model.site))
.Sort(sort => sort.Add(model => model.timeStamp).Ascending())
)
How do I add a sub group to this Group setting? I want to add model.tag as the subgroup. The online docs don't have the razor syntax for subgroups.
@(Html.Kendo().Chart(Model)
.Name("chart")
.Title("Site Tag Values")
.DataSource(dataSource => dataSource
.Group(group => group.Add(model => model.site))
.Sort(sort => sort.Add(model => model.timeStamp).Ascending())
)
How do I add a sub group to this Group setting? I want to add model.tag as the subgroup. The online docs don't have the razor syntax for subgroups.