I have two resourcearea-columns in my fullcalender (version 5) set like this:
resourceAreaColumns: [
{
group: true,
field: 'depot',
headerContent: 'HL',
},
{
field: 'title',
headerContent: 'LKW'
}
],
resourceAreaWidth: '10%',
Also, as you can see, I want the whole resource area to be 10%. Is it possible to also set the individual width of the two columns? I would need depots to be 30% and title 70%. So intuitively something like:
resourceAreaColumns: [
{
group: true,
field: 'depot',
headerContent: 'HL',
width: '30%'
},
{
field: 'title',
headerContent: 'LKW',
width: '70%'
}
],
resourceAreaWidth: '10%',