const resources = [ { resourceId: 1, resourceTitle: 'Board room' }, { resourceId: 2, resourceTitle: 'Training room' } ]
How can I change the number of columns for each resourceGroupingLayout group?
When I feed the data into the component in the form of props resources ={resources }, the calendar automatically sets 2 columns for each day, is it possible to manipulate this somehow?
So that one day would have, for example, 2 columns, the second day one, the third three
const resources = [ { resourceId: 1, resourceTitle: 'Board room' }, { resourceId: 2, resourceTitle: 'Training room' } ]How can I change the number of columns for each resourceGroupingLayout group?
When I feed the data into the component in the form of props
resources ={resources },the calendar automatically sets 2 columns for each day, is it possible to manipulate this somehow?So that one day would have, for example, 2 columns, the second day one, the third three