Skip to main content
All docs
V26.1
  • GanttStripLineBuilder.CssClass(String) 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(
        string value
    )

    Parameters

    Name Type Description
    value String

    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("line_current_time");
            // ...
        )
    )
    
    See Also