XLSXComposer.Sheet (xlsx_composer v0.4.0)
View SourceElixir.XLSXComposer.Sheet corresponds to Elixls's Sheet and translates into that if you want to do additional stuff or if you have to work around limitations of this library.
Summary
Types
@type excel_cell_by_row_idx() :: %{ required(integer()) => [XLSXComposer.CellDef.excel_cells()] }
@type new_attrs() :: %{name: String.t(), sections: [XLSXComposer.Section.t()]}
@type t() :: %XLSXComposer.Sheet{ excel_cells: XLSXComposer.CellDef.excel_cells(), max_row_idx: integer(), name: String.t() }
Functions
@spec excel_rows_max_column(excel_cell_by_row_idx()) :: %{ required(integer()) => integer() }
@spec generate_empty_row(non_neg_integer()) :: [nil]
@spec group_excel_cell_by_row_idx(XLSXComposer.CellDef.excel_cells()) :: excel_cell_by_row_idx()
@spec to_elixlsx_rows(t()) :: []