Skip to main content

FunnelLegendBuilder.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 FunnelLegendBuilder ItemsAlignment(
    HorizontalAlignment value
)

Parameters

Name Type Description
value HorizontalAlignment

The option value.

Returns

Type Description
FunnelLegendBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().Funnel()
    .Legend(legend => legend
        .ItemsAlignment(HorizontalAlignment.Center)
    )
)
See Also