Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V20.1
  • StripLine.CssClass Property

    Specifies the name of the cascading style sheet (CSS) class associated with a strip line.

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v20.1.dll

    NuGet Package: DevExpress.Web

    Declaration

    public string CssClass { get; set; }

    Property Value

    Type Description
    String

    The name of the CSS class.

    Remarks

    <style>
        .line-1 {
            border-left: 1px solid red;
        }
    </style>
    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsStripLine>
            <StripLines>
                <dx:StripLine Title="Start Time" Start="2019-02-21T08:00:00.000Z" CssClass="line-1"/>
            <StripLines>
        </SettingsStripLine>
    </dx:ASPxGantt>
    

    Examples

    Online Demos

    See Also