Skip to main content
All docs
V25.2
  • LineDashType Enum

    Lists values that specify the line dash type.

    Namespace: DevExpress.Docs.Presentation

    Assembly: DevExpress.Docs.Presentation.v25.2.dll

    NuGet Package: DevExpress.Docs.Presentation

    Declaration

    public enum LineDashType

    Members

    Name Description Example
    Solid

    A solid line. The binary pattern is 1 (a continuous line).

    DevExpress Presentation API - Line Type - Solid

    SystemDash

    A line that consists of short dashes. The binary pattern is 1110 (three filled points and one space).

    DevExpress Presentation API - Line Type - SystemDash

    SystemDot

    A line that consists of dots with a short space between them. The binary pattern is 10 (one filled point and one space).

    DevExpress Presentation API - Line Type - SystemDot

    SystemDashDot

    A line that consists of a repeating short dash-dot pattern. The binary pattern is 111010 (three filled points, one space, one filled point, and one space).

    DevExpress Presentation API - Line Type - SystemDashDot

    SystemDashDotDot

    A line that consists of a repeating short dash-dot-dot pattern. The binary pattern is 11101010 (three filled points, one space, one filled point, one space, one filled point, and one space).

    DevExpress Presentation API - Line Type - SystemDashDotDot

    Dot

    A line that consists of dots. The binary pattern is 1000 (one filled point and three spaces).

    DevExpress Presentation API - Line Type - Dot

    Dash

    A line that consists of dashes. The binary pattern is 1111000 (four filled points and three spaces).

    DevExpress Presentation API - Line Type - Dash

    DashDot

    A line that consists of a repeating dash-dot pattern. The binary pattern is 11110001000 (four filled points, three spaces, one filled point, and three spaces).

    DevExpress Presentation API - Line Type - DashDot

    LongDash

    A line that consists of long dashes. The binary pattern is 11111111000 (eight filled points and three spaces).

    DevExpress Presentation API - Line Type - LongDash

    LongDashDot

    A line that consists of a repeating long dash-dot pattern. The binary pattern is 111111110001000 (eight filled points, three spaces, one filled point, and three spaces).

    DevExpress Presentation API - Line Type - LongDashDot

    LongDashDotDot

    A line that consists of a repeating long dash-dot-dot pattern. The binary pattern is 1111111100010001000 (eight filled points, three spaces, one filled point, three spaces, one filled point, and three spaces).

    DevExpress Presentation API - Line Type - LongDashDotDot

    Related API Members

    The following properties accept/return LineDashType values:

    See Also