rtl Boolean (default: false)

Sets the direction of the workbook. By default, the direction is left-to-right.

Example - setting the date

<script>
var workbook = new kendo.ooxml.Workbook({
  rtl: true,
  sheets: [
      {
          rows: [
              { cells: [ { value: "foo" } ] }
          ]
      }
  ]
});
workbook.toDataURLAsync().then(function(dataURL) {
  kendo.saveAs({
    dataURI: dataURL,
    fileName: "Test.xlsx"
  });
});
</script>
In this article