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