Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    HatchDirection Enum

    Lists values that specify how the target component displays hatch lines.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    #Declaration

    C#
    public enum HatchDirection

    #Members

    Name Description
    None

    Hatch lines are hidden.

    Right

    The component displays diagonal hatch lines from the upper-left to bottom-right corner.

    Left

    The component displays diagonal hatch lines from the bottom-left to upper-right corner.

    #Related API Members

    The following properties accept/return HatchDirection values:

    #Remarks

    Use the DxHatchSettings.Direction property to specify how the target component displays hatch lines. To hide hatch lines, set this property to None.

    #Example

    The following code snippet configures hatch lines for DxSankey links:

    DxSankey - Hatching Line Configuration

    <DxSankey Data="@Data"
              Width="100%"
              Height="440px"
              SourceFieldName="Source"
              TargetFieldName="Target"
              WeightFieldName="Weight">
        <DxSankeyNodeSettings Width="8" Spacing="30" />
        <DxSankeyLinkSettings ColorMode="SankeyLinkColorMode.Gradient">
            <DxSankeyHoverStyleSettings Color="#5f368d" Opacity="0.6">
                <DxHatchSettings Direction="HatchDirection.Right"
                                 LineSpacing="6"
                                 Width="2"
                                 Opacity="0.3"/>
            </DxSankeyHoverStyleSettings>
        </DxSankeyLinkSettings>
        <DxTitleSettings Text="Commodity Turnover" />
    </DxSankey>
    
    @code {
        IEnumerable<SankeyDataPoint> Data = Enumerable.Empty<SankeyDataPoint>();
        protected override void OnInitialized() {
            Data = GenerateData();
        }
    }
    
    See Also