Hello, I was wondering if it was possible to to the use DateRangePicker for selecting a range of months instead of days. I currently have the following code:
@(Html.Kendo().DateRangePicker()
.Name("MonthlyDatePicker")
.HtmlAttributes(new { style = "width: 100%" })
.Events(e => e.Change("onMonthlyChange"))
.Start("year")
.Depth("year")
.Format("MM yyyy")
)
This code appears the way I want it to but does not allow the user to select a month. Any help is much appreciated. Thanks