Skip to main content
A newer version of this page is available. .

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.2.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