DxTooltipSettings.CornerRadius Property
Specifies the corner radius for tooltip borders.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(0)]
[Parameter]
public int CornerRadius { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Int32 | 0 | The corner radius in pixels. |
Remarks
The following code snippet changes the corner radius for tooltip borders in the DxBarGauge component:
<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