Skip to main content
All docs
V26.1
  • GanttStripLineBuilder.End(DateTime) Method

    Specifies the end point of the strip line. Mirrors the client-side end option.

    Namespace: DevExtreme.AspNet.Mvc.Builders

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    public GanttStripLineBuilder End(
        DateTime value
    )

    Parameters

    Name Type Description
    value DateTime

    The end point.

    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");
            stripLines.Add()
                .Start(new Date(1920, 9, 10))
                .End(new Date(1920, 11, 1))
                .Title("Final Stage");
            // ...
        )
    )
    
    See Also