Skip to main content

LinearGaugeGeometryBuilder.Orientation(Orientation) Method

Indicates whether to display the LinearGauge UI component vertically or horizontally. Mirrors the client-side orientation option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public LinearGaugeGeometryBuilder Orientation(
    Orientation value
)

Parameters

Name Type Description
value Orientation

The option value.

Returns

Type Description
LinearGaugeGeometryBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().LinearGauge()
    .Geometry(geometry => geometry
        .Orientation(Orientation.Horizontal)
    )
)
See Also