Current Month August:
@(Html.Kendo().DateRangePicker()
.Name("daterangepicker3")
.Format("MM/dd/yyyy")
.Range(r => r.Start(DateTime.Now.AddMonths(-1)).End(DateTime.Now.AddMonths(-1).AddDays(10)))
.HtmlAttributes(new { style = "width: 100%", title = "daterangepicker3" })
)
When the default Range is last month, clicking the date boxes, shows August, not July where the highlighted range is. Is there away to set the start month?