hello, I need to color some cells red in the left grid of the scheduler, since they have to be colored according to some constraints, how can I do it? I attach screenshot of the desired behavior
thank u
You can specify properties of the row header cells using the onBeforeRowHeaderRender event handler.
In this case, it could look like this:
onBeforeRowHeaderRender: args => { if (yourCriteria) { const column = args.row.columns[6]; if (column) { column.backColor = "red"; } } }
Thanks it works!!