DXSliderTooltipAppearance.MinHeight Property
Gets or sets the minimum height of the tooltip. This is a bindable property.
Namespace: DevExpress.Maui.Editors
Assembly: DevExpress.Maui.Editors.dll
NuGet Package: DevExpress.Maui.Editors
Declaration
public double MinHeight { get; set; }
Property Value
Type | Description |
---|---|
Double | The minimum height. |
Example
The following example changes tooltip appearance in DXSlider and DXRangeSlider controls:
<dxe:DXSlider
TooltipDisplayFormat="C"
Value="48">
<dxe:DXSlider.TooltipAppearance>
<dxe:DXSliderTooltipAppearance
BackgroundColor="Orange"
CornerRadius="15"
MinHeight="25"
MinWidth="25"
TextColor="White"
FontFamily="Arial"
FontSize="18"
FontAttributes="Italic"
Padding="20"
Indent="15" />
</dxe:DXSlider.TooltipAppearance>
</dxe:DXSlider>
<dxe:DXRangeSlider
StartTooltipDisplayFormat="N1"
EndTooltipDisplayFormat="N1"
StartValue="15"
EndValue="85">
<dxe:DXRangeSlider.StartTooltipAppearance>
<dxe:DXSliderTooltipAppearance
BackgroundColor="orange"
CornerRadius="15"
MinHeight="25"
MinWidth="25"
TextColor="White"
FontFamily="Arial"
FontSize="18"
FontAttributes="Italic"
Padding="20"
Indent="15" />
</dxe:DXRangeSlider.StartTooltipAppearance>
<dxe:DXRangeSlider.EndTooltipAppearance>
<dxe:DXSliderTooltipAppearance ... />
</dxe:DXRangeSlider.EndTooltipAppearance>
</dxe:DXRangeSlider>
See Also