Back to Devexpress

DxTooltipSettings.CornerRadius Property

blazor-devexpress-dot-blazor-dot-dxtooltipsettings-e669ff5e.md

latest1.5 KB
Original Source

DxTooltipSettings.CornerRadius Property

Specifies the corner radius for tooltip borders.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(0)]
[Parameter]
public int CornerRadius { get; set; }

Property Value

TypeDefaultDescription
Int320

The corner radius in pixels.

|

Remarks

The following code snippet changes the corner radius for tooltip borders in the DxBarGauge component:

razor
<DxBarGauge Width="50%"
            Height="50%"
            StartValue="-5"
            EndValue="5"
            BaseValue="0"
            Values="@Values">
    @* ... *@
    <DxTooltipSettings Enabled="true"
                       Color="lightyellow" 
                       CornerRadius="14">
        <DxTextFormatSettings LdmlString="@LabelFormat" />
    </DxTooltipSettings>
</DxBarGauge>

@code {
    string LabelFormat = "##.## mm;-##.## mm";
    double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
}

See Also

DxTooltipSettings Class

DxTooltipSettings Members

DevExpress.Blazor Namespace