Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 243 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 243 Bytes

ng-xslx

Installation

bower install --save angular-xlsx

Usage

var result = svc.writeXlsx([
	{
		sheetName: "testSheet",
		columnDefs: [
			{field: "colA", displayName: "Column A"}
		],
		data: [
			{colA: 1}
		]
	}
	]);