blazor-devexpress-dot-blazor-3031fef6.md
Lists the vertical alignment options.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum VerticalAlignment
| Name | Description |
|---|---|
Top |
Aligns the items or text at the top.
|
| Center |
Aligns the items or text at the center.
|
| Bottom |
Aligns the items or text at the bottom.
|
The following properties accept/return VerticalAlignment values:
The following example uses the VerticalAlignment values to configure the VerticalAlignment property:
<DxChartValueAxis>
<DxChartConstantLine Value="50" >
<DxChartConstantLineLabel Text="Average"
VerticalAlignment="VerticalAlignment.Center"
Position="RelativePosition.Inside" />
</DxChartConstantLine>
<DxChartConstantLine Value="100"/>
...
</DxChartValueAxis>
See Also