sheets.rows.cells.borderLeftObject

The style information for the left border of the cell.

Example

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      rows: [{
        cells: [{
          value: "Cell",
          borderLeft: {
            color: "#0000ff",
            size: "1px"
          }
        }]
      }]
    }]
  });
</script>

sheets.rows.cells.borderLeft.colorString

The left border color of the cell. Many standard CSS formats are supported. However, the canonical form is #ccff00.

Example

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      rows: [{
        cells: [{
          value: "Cell",
          borderLeft: {
            color: "#00ff00"
          }
        }]
      }]
    }]
  });
</script>

sheets.rows.cells.borderLeft.sizeString

The width of the border in pixels.

Example

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      rows: [{
        cells: [{
          value: "Cell",
          borderLeft: {
            size: "2px"
          }
        }]
      }]
    }]
  });
</script>