diff --git a/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js b/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js index d137793d9c..aa538016a3 100644 --- a/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js @@ -300,7 +300,7 @@ define([ if (this.isStepChanged) { var value = this.inputStep.getValue(); (typeof value === 'string') && (value = value.replace(',','.')); - this._changedProps.asc_setStepValue(value!=='' ? parseFloat(value) : 1); + this._changedProps.asc_setStepValue(value!=='' ? parseFloat(value) : null); } if (this.isStopChanged) { var value = this.inputStop.getValue();