GanttStripLineBuilder.CssClass(JS) Method
In This Article
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
C#
public GanttStripLineBuilder CssClass(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
Gantt |
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