excel.fileName String (default: "Export.xslx")

Specifies the file name of the exported Excel file.

Example - setting the default Excel file name

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    columns: {
        fieldColumn: { width: 200 },
        valueColumn: { width: 250 }
    },
    excel: {
      fileName: "Employees.xlsx"
    },
    model: {
        foo: "bar",
        baz: 5
    }
  });
</script>
In this article