Empty workbook can be used instead of empty xlsx file and extraRows, extraCols parameters can be used to add empty rows and columns.
var wb = {
sheets: [
{
rows: [
],
columns: [
]
}
]
}
//import workbook into the grid.
grid.importWb({ workbook: wb, extraRows: 20, extraCols: 10 });