[ ] Bug report [x] Feature request [ ] Documentation issue or request [ ] Support request => Please do not submit a support request here, please ask on https://stackoverflow.com/
It would be nice if we could hide the days of previous and next months in the month view.
Something just like that (made on Paint):

Extra question: is it possible to disable all those unnecessary hover effects in calendar without messing up with styles?
Tried to do something related to this:
export class MyCalendarUtils extends CalendarUtils {
getMonthView(args: GetMonthViewArgs): MonthView {
args.viewStart = startOfMonth(args.viewDate);
args.viewEnd = endOfMonth(args.viewDate);
return getMonthView(args);
}
}
But no luck.
Angular: 4.3.6
Calendar library: 0.21.2
Browser name and version: Mozilla Firefox 57.0a1
You can do this with CSS:
.cal-out-month .cal-cell-top {
display: none;
}
Plunker: http://plnkr.co/edit/nEZZnr4DFyt5bnGkNPPR?p=preview
can't we add any setting like showNonCurrentDates=false kind off
Most helpful comment
You can do this with CSS:
Plunker: http://plnkr.co/edit/nEZZnr4DFyt5bnGkNPPR?p=preview