New to Kendo UI for jQueryStart a free 30-day trial

Sheets.columns

configuration

An array which defines the columns in this sheet and their content.

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      columns: [
        { index: 0, width: 100 },
        { index: 1, width: 200 },
        { index: 2, width: 150 }
      ]
    }]
  });
</script>

The zero-based index of the column. Required to ensure correct positioning.

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      columns: [
        { index: 0, width: 100 },
        { index: 2, width: 150 }
      ]
    }]
  });
</script>

The width of the column in pixels. Defaults to columnWidth.

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      columns: [
        { index: 0, width: 120 },
        { index: 1, width: 80 }
      ]
    }]
  });
</script>