Back to Devexpress

LegendItemTextPosition Enum

blazor-devexpress-dot-blazor-7fca01a8.md

latest2.4 KB
Original Source

LegendItemTextPosition Enum

Lists positions of legend item captions relative to item markers.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public enum LegendItemTextPosition

Members

NameDescriptionImage
Bottom

Bottom position.

|

| | Left |

Left position.

|

| | Right |

Right position.

|

| | Top |

Top position.

|

| | Auto |

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

| |

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:

razor
<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

DevExpress.Blazor Namespace