I want to change all of these color.
It would be very helpful if you give me a sample code.
Thank you very much.
I want to change all of these color.
It would be very helpful if you give me a sample code.
Thank you very much.
@heukma It's difficult to understand exactly what you are trying to accomplish, but it seems to me what you are looking for is the slotPropGetter prop. This will allow you to provide custom classes or styles to slots, based upon the date you pass in.
// your arrow function can contain custom logic, as long
// as it returns an object with either the `className` or
// `style` keys (or both). `className` must be a string, while `style`
// must be an object.
slotPropGetter={(date) => ({
className: 'some-custom-class',
style: {
backGroundColor: 'periwinkle'
}
})}