round Boolean(default: true)

Specifies whether the value should be rounded or truncated. The length of the fraction is defined by the decimals value.

Example

<input id="numerictextbox" />
<script>
$("#numerictextbox").kendoNumericTextBox({
    round: false
});
</script>
In this article