StephenChou1017 / react-big-scheduler

A scheduler and resource planning component built for React and made for modern browsers (IE10+)
https://stephenchou1017.github.io/scheduler/#/
MIT License
746 stars 415 forks source link

how to change the color of the table like this? #197

Closed RianKhanafi closed 4 years ago

RianKhanafi commented 4 years ago

color

RianKhanafi commented 4 years ago

yes. I have found it

usahai commented 3 years ago

Hey, do you have any idea how I can change the color of the header row? -- i.e. first, last, header

RianKhanafi commented 3 years ago

yes, clone peckage, you can search for ResourceEvents.js file at line 454 in the connectDropTarget

and you add styles you want, like: backgroundColor: index % 2 == 0 ? "rgba(0,0,0,0.04)" : "rgba(0,0,0,0.02)", or whatever