Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

LegendItemTextPosition Enum

Lists positions of legend item captions relative to item markers.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public enum LegendItemTextPosition

Members

Name Description Image
Bottom

Bottom position.

Bar Guage - Bottom Position of Legend Item Captions

Left

Left position.

Bar Gauge - Left Position of Legend Item Captions

Right

Right position.

Bar Gauge - Right Position of Legend Item Captions

Top

Top position.

Bar Gauge - Top Position of Legend Item Captions

Auto

This option is identical to Bottom if the HorizontalAlignment property value is Center; otherwise, the Auto option is identical to Right.

Related API Members

The following properties accept/return LegendItemTextPosition values:

Remarks

The following code snippet positions item captions in the DxBarGauge legend to the left from item markers:

<DxBarGauge Width="50%"
            Height="500px"
            StartValue="0"
            EndValue="100"
            Values="@Values">
    <DxBarGaugeLegendSettings Visible="true"
                              ItemCaptions="@LegendItemCaptions"
                              ItemTextPosition="LegendItemTextPosition.Left"
                              Orientation="LegendItemOrientation.Vertical"
                              HorizontalAlignment="HorizontalAlignment.Left"/>
    @* ... *@
</DxBarGauge>

@code {
    double[] Values = new double[] { 47.27, 65.32, 84.59, 81.86, 99 };
    string[] LegendItemCaptions = new string[] { "Metacritic", "Ratingraph.com", "Rotten Tomatoes", "IMDb", "TV.com" };
}
See Also