VectorMapLegendBuilder.ItemsAlignment(HorizontalAlignment) Method
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
public VectorMapLegendBuilder ItemsAlignment(
HorizontalAlignment value
)
Parameters
Name | Type | Description |
---|---|---|
value | HorizontalAlignment | The option value. |
Returns
Type | Description |
---|---|
VectorMapLegendBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().VectorMap()
.Legends(legends => {
legends.Add().ItemsAlignment(HorizontalAlignment.Center);
})
)
See Also