Hi trying to get help with this. As you can see from the screenshot the legend shows the Group name and also the Series name. The Series is based on the Video Ports value. However, the datasource is being grouped by a different property called FriendlyName. How can I remove the part ":Video Ports"
@(Html.Kendo().Chart<MCUSamples24HoursModel>() .Name("RMXHourlyVideo") .Title("Video Utilization") .Legend(legend => legend.Position(ChartLegendPosition.Right)) .Series(series => { series.Line(model => model.VideoPorts).Style(ChartLineStyle.Smooth).Markers(false); }) .CategoryAxis(axis => axis.Categories(model => model.Hour)) .ValueAxis(axis => axis .Numeric().Labels(labels => labels.Format("{0}")) .Line(line => line.Visible(false)) ) .DataSource(dataSource => dataSource .Group(group => group.Add(model => model.FriendlyName)) .Sort(sort => sort.Add(model => model.HourTime)) .Read(read => read.Url(Url.HttpRouteUrl("Default", new { controller = "McuSamples24Hour", action = "Post" }))) .ServerOperation(true) ) .ValueAxis(axis => axis.Numeric()) .Tooltip(tooltip => tooltip .Visible(true) .Format("{0}") ) )