PolarChartLegendBuilder.ItemsAlignment(HorizontalAlignment) Method
In This Article
Aligns items in the last column or row (depending on the legend's orientation). Applies when legend items are not divided into columns or rows equally. Mirrors the client-side itemsAlignment option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public PolarChartLegendBuilder ItemsAlignment(
HorizontalAlignment value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Horizontal |
The option value. |
#Returns
Type | Description |
---|---|
Polar |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().PolarChart()
.Legend(legend => legend
.ItemsAlignment(HorizontalAlignment.Center)
)
)
See Also