SchedulerResourceBuilder.UseColorAsDefault(Boolean) Method
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
public SchedulerResourceBuilder UseColorAsDefault(
bool value
)
Parameters
Name | Type | Description |
---|---|---|
value | Boolean | The option value. |
Returns
Type | Description |
---|---|
SchedulerResourceBuilder | 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