I want to hide the scheduler.templates.day_scale_date
on the DayView template as it is a repeat of the header block.
This does not work --> scheduler.templates.day_scale_date = false;
And I can’t do it via CSS as it also hides the scale on the Week and Month (which I want to display). The id/class is not unique on the Day View.
This works, but I would prefer to be able to hide the surrounding content block border as well:
scheduler.templates.day_scale_date = function(date){ return ''; };
How do you do it?
I searched the documentation high and low for an example but could not locate one.
Thank you.