The date aggregation has ChartSeriesAggregate.First however it would be useful to also have ChartSeriesAggregate.Last iei aggregating share price.
Is there currently anyway to implement?
@(Html.Kendo().Chart(Model) .Name("chart") .Series(series => { series .Column(model => model.Value, categoryExpression: model => model.Date) .Aggregate(ChartSeriesAggregate.Avg); }) .CategoryAxis(axis => axis .Date() .BaseUnit(ChartAxisBaseUnit.Weeks) .MajorGridLines(lines => lines.Visible(false)) ) .ValueAxis(axis => axis .Numeric() .Line(line => line.Visible(false)) ) )
The method is not available for the MVC wrappers but it is available for ASP.NET Core.