How to set no background color of each task in agenda view

In day,month,year view
I have to use background color of each task schedule,This is ok.
but I no need fill background color of each task in agenda view.
How can I set background color to “no color” or default of each task in agenda view?

Example
var CalendarEventtmp = new List();
calendartmp.text = blablaba…
calendartmp.start_date = blablaba…
calendartmp.end_date =blablaba…
calendartmp.color = “orange”;
CalendarEventtmp.Add(calendartmp);

Thanks for advance.


Help me please,It near expire trial version.

Hi,
color defined it the ‘color’ property is applied to the event style, you can cancel it with css with ‘!important’ directive
The following css should cancel custom bg in agenda view

.dhx_scheduler_agenda .dhx_agenda_line{ background-color: transparent !important; }

This is work fine.Thanks for your help.