blazor-devexpress-dot-blazor-dot-dxtooltipsettings-aaea49e0.md
Specifies the tooltip color.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue("#ffffff")]
[Parameter]
public string Color { get; set; }
| Type | Default | Description |
|---|---|---|
| String | "#ffffff" |
The tooltip color.
|
The Color property accepts the following formats:
#ffff00, #ff0.rgb(255, 0, 0), rgba(0, 230, 0, 0.3).red, DarkGreen.The following code snippet changes the tooltip color in the DxBarGauge component:
<DxBarGauge Width="50%"
Height="50%"
StartValue="-5"
EndValue="5"
BaseValue="0"
Values="@Values">
@* ... *@
<DxTooltipSettings Enabled="true"
Color="lightyellow"
Opacity="0.5">
<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