GanttStripLineBuilder.CssClass(JS) Method
Specifies the name of the cascading style sheet (CSS) class associated with the strip line. Mirrors the client-side cssClass option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public GanttStripLineBuilder CssClass(
JS value
)
Parameters
Name | Type | Description |
---|---|---|
value | JS | A JavaScript expression that specifies the option value. |
Returns
Type | Description |
---|---|
GanttStripLineBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Gantt()
.StripLines(stripLines =>
stripLines.Add()
.Start(new DateTime(DateTime.Now)
.Title("CurrentTime")
.CssClass(new JS("myValue"));
// ...
)
)
See Also