RowDirective

12 Sep 20251 minute to read

e-row directive represent a row of the Angular Spreadsheet.
It must be contained in a e-sheet directive.

<ejs-spreadsheet>
  <e-sheets>
   <e-sheet>
   <e-rows>
   <e-row></e-row>
   </e-rows>
   </e-sheet>
  </e-sheets>
</ejs-spreadsheet>

Properties

cells any

Specifies cell and its properties for the row.

Defaults to []

customHeight any

specifies custom height of the row.

Defaults to false

format any

Specifies format of the row.

Defaults to {}

height any

Specifies height of the row.

Defaults to 20

hidden any

To hide/show the row in spreadsheet.

Defaults to false

index any

Specifies the index to the row. Based on the index, row properties are applied.

Defaults to 0

isReadOnly any

Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.

Defaults to false