I am implementing "React Big Calendar" calendar from https://jquense.github.io/react-big-calendar/examples/index.html?path=/docs/additional-examples--custom-time-gutter-wrapperand in the link that I put it shows that the side corresponding to the hours can be customized, in my case I want to eliminate all that column, but in the documentation it does not show how or maybe I am the one that has not found the how, anyway I tried to see the documentation in the GitHub repository that has the link, but it has me too confused, so if someone has done something similar, can you help me or if you find how to do it, I have tried in several ways, calling the component from the CSS It works but since I also use the calendar in another section, the side of the time is eliminated from that calendar as well. Finally, if someone knows a way for the css component to only apply to a single calendar, it would help me a lot .rbc-time-gutter > .rbc-timeslot-group > .rbc-time-slot{ display: none; }
that is the component from the css
If it can be removed by
css
you just have to wrap your componentcalendar
in anotherdiv
, assign a class to thatdiv
and then only execute thedisplay:none
if it's in thatdiv
and then in your
css
Here is an example of how this would work. As you can see it only removes it in one of the two.