Customize step value and hide spin buttons in Blazor NumericTextBox

14 Aug 20261 minute to read

Spin buttons allow increasing or decreasing the value with the predefined Step value. The visibility of the spin buttons can be set using the ShowSpinButton property. Use the Decimals property to control the number of digits after the decimal point.

@using Syncfusion.Blazor.Inputs

<SfNumericTextBox TValue="int?" Value=10 Min=10 Max=100 Step=2 ShowSpinButton=false></SfNumericTextBox>

Hiding Spin Button in Blazor Numeric TextBox