Closed ShrinivasKattimani closed 7 years ago
Can we have a configuration to show/hide the week number label? I tried the following and it worked.
angular .module('mwl.calendar') .constant('calendarConfig', { . . showWeekNumberLabel: false, . . });
<div class=\"cal-week-box-cell\" ng-if=\"$first && rowHovered && calendarConfig.showWeekNumberLabel\">\n <span ng-bind=\"vm.getWeekNumberLabel(day)\"></span>\n </div>
Please do consider this feature.
You can hide this with CSS:
.cal-week-box-cell { display: none; }
Hope that helps! :)
Can we have a configuration to show/hide the week number label? I tried the following and it worked.
<div class=\"cal-week-box-cell\" ng-if=\"$first && rowHovered && calendarConfig.showWeekNumberLabel\">\n <span ng-bind=\"vm.getWeekNumberLabel(day)\"></span>\n </div>
Please do consider this feature.