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