LinearGaugeGeometryBuilder.Orientation(Orientation) Method
In This Article
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
C#
public LinearGaugeGeometryBuilder Orientation(
Orientation value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Orientation | The option value. |
#Returns
Type | Description |
---|---|
Linear |
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