Back to Devexpress

TextBaseSettings<TComponent, TModel>.Text Property

blazor-devexpress-dot-blazor-dot-base-dot-textbasesettings-2-1919262e.md

latest1.4 KB
Original Source

TextBaseSettings<TComponent, TModel>.Text Property

Specifies element text.

Namespace : DevExpress.Blazor.Base

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[Parameter]
public string Text { get; set; }

Property Value

TypeDescription
String

The element text.

|

Remarks

The following code snippet assigns a text string to the legend title in a DxBarGauge component:

razor
<DxBarGauge Width="30%"
            Height="200px"
            StartValue="-5"
            EndValue="5"
            BaseValue="0"
            Values="@Values">
    <DxBarGaugeLegendSettings Visible="true">
        <DxLegendTitleSettings Text="Legend Title"
                               HorizontalAlignment="HorizontalAlignment.Right">
        </DxLegendTitleSettings>
    </DxBarGaugeLegendSettings>
</DxBarGauge>

@code {
    double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
}

See Also

TextBaseSettings<TComponent, TModel> Class

TextBaseSettings<TComponent, TModel> Members

DevExpress.Blazor.Base Namespace