sheets.drawings.topLeftCellString
A cell to which the drawing's top-left corner is anchored.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
drawings: [{
topLeftCell: "B2",
width: 50,
height: 50
}]
}]
});
</script>
In this article