Hi Brijesh,
Thank you for contacting Syncfusion Support.
We have prepared a sample to customize the background color of agenda view columns which can be viewed from the below link.
<Code>
function onQueryCellinfo(args) {
if (args.requestType === 'agendacells' && args.cellType === 'agendaheadercells') {
args.element.css("background-color", "#faa41a"); //to add color in header
}
if (args.requestType === 'agendacells' && $(args.element).hasClass('e-timecolumn')) {
$(args.element).hide();
}
if (args.requestType === 'agendacells' && args.cellType === 'agendaeventcell') {
args.element.css("background-color", "#ffe9cc"); //to add color in event column
}
if (args.requestType === 'agendacells' && args.cellType === 'agendadatecell') {
args.element.css("background-color", "#dcf1f8"); //to add color in date column
}
if (args.requestType === 'agendacells' && args.cellType === 'agendaresourcecell') {
args.element.css("background-color", "#ebf1c4"); //to add color in resource column
}
}
</Code>
Regards,
Nevitha.