SchedulerResourceBuilder.UseColorAsDefault(Boolean) Method
In This Article
Specifies whether appointments are colored like this resource kind. Mirrors the client-side useColorAsDefault option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public SchedulerResourceBuilder UseColorAsDefault(
bool value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Boolean | The option value. |
#Returns
Type | Description |
---|---|
Scheduler |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Scheduler()
.Resources(resources => {
resources.Add().UseColorAsDefault(true);
})
)
See Also