You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maybe you can use DOM and setting style depending the day
Into Init wait set calendar and values, then you need identificate when start and finish your range
setTimeout(() => {
// get html
const elements = document.getElementsByClassName('tooltip');
// example get current day with number format (1 - 365)
elements[this.getDayNumberYear() - 1].setAttribute('style', 'color:white; background-color: #FF6B0B; height: 24px; padding-top: 0px;');
}, 10);
I added the following css to
ng-fullyearcalendar
It is working fine as expected.
However, I want to add border-radius only to the left-most and right-most elements on a continuous date - so that I get something like so -
Is it possible to accomplish this?
Any suggestion from you guys would help a lot 😀
The text was updated successfully, but these errors were encountered: