sheets.rows.cells.borderRightObject

The style information for the right border of the cell.

Example

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

sheets.rows.cells.borderRight.colorString

The right 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",
          borderRight: {
            color: "#cccccc"
          }
        }]
      }]
    }]
  });
</script>

sheets.rows.cells.borderRight.sizeString

The width of the border in pixels.

Example

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