No sorry this is not possible because we use Joomla JForm field api. This is a problem of Joomla, it assign default to 0.
You can clear the field with Javascript, add something like this at your template JS file
jQuery(document).ready(function($){
$('input[type="number"]').val('');
});
Tested and works