Skip to main content

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

Parameters

Name Type Description
value HorizontalAlignment

The option value.

Returns

Type Description
PieChartLegendBuilder

A reference to this instance after the method is called.

Remarks

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

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