sheets.drawings.widthNumber
The drawing's width in pixels.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
drawings: [{
topLeftCell: "A1",
width: 120,
height: 80
}]
}]
});
</script>
In this article