DxTimeEdit<T>.MinuteIncrement Property
Specifies the interval between minute values in a scroll picker.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(1)]
[Parameter]
public int MinuteIncrement { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| Int32 | 1 | The interval. |
Remarks
The MinuteIncrement property allows you to display fewer values in the Minute column when you do not need a precise selection. Note that this column’s values always start with 0.
If the specified MinuteIncrement property value is less than 1, the component resets this value to 1.
In the following example, the scroll picker displays 15-minute intervals:
<DxTimeEdit Time="DateTime.Now"
ScrollPickerFormat="h m s"
MinuteIncrement="15" />

See Also