BootstrapChartArgumentAxis.Position Property
Specifies the argument axis position.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
[DefaultValue(UIElementPosition.Bottom)]
public override UIElementPosition Position { get; set; }
Property Value
Type | Default | Description |
---|---|---|
UIElementPosition | Bottom | One of the UIElementPosition enumeration values. |
Available values:
Name | Description |
---|---|
Bottom | An element is positioned at the bottom of the parent element. |
Top | An element is positioned at the top of the parent element. |
Left | An element is positioned at the left of the parent element. |
Right | An element is positioned at the right of the parent element. |
NotSet | An element position is defined by the underlying control. |
Remarks
Depending on the value of the BootstrapChart.Rotated property, Position accepts different values.
Rotated | Position |
---|---|
false | “bottom” or “top” |
true | “left” or “right” |
See Also