sheets.drawings.offsetXNumber
The horizontal offset from the anchor cell's top-left corner, in pixels.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
drawings: [{
topLeftCell: "A1",
offsetX: 15,
width: 50,
height: 50
}]
}]
});
</script>
In this article