blazor-devexpress-dot-blazor-dot-base-dot-legendbasesettings-2-023adc87.md
Specifies the position of legend item captions relative to item markers.
Namespace : DevExpress.Blazor.Base
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(LegendItemTextPosition.Auto)]
[Parameter]
public LegendItemTextPosition ItemTextPosition { get; set; }
| Type | Default | Description |
|---|---|---|
| LegendItemTextPosition | Auto |
An enumeartion value.
|
Available values:
| Name | Description | Image |
|---|---|---|
| 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 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
LegendBaseSettings<TComponent, TModel> Class