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" } ] }
          ]
      }
  ]
});
kendo.saveAs({
  dataURI: workbook.toDataURL(),
  fileName: "Test.xlsx"
});
</script>
In this article