sheets.activeCell String
The active cell in the sheet, for example, A1
.
Example - configure the initially active cell
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [
{
activeCell: "C3"
}
]
});
</script>