0.0.6 • Published 3 years ago

file-saver-angular v0.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Documentation

This library is used to export data to csv/excel

Installation

npm install file-saver-angular

import FileSaverAngularService in your component and add this service in providers

providers: [FileSaverAngularService]

create service object

constructor(private fileSaverServiceObj: FileSaverAngularService) { }

How to export data in csv. use exportToCsv() method using service object like this

this.fileSaverServiceObj.exportToCsv(
      [
        {
          Language: 'Python',
          Framework: 'Django'
        }, {
          Language: 'PHP',
          Framework: 'Laravel'
        }
      ], 'test.csv'
    );

How to export data in excel. use exportToExcel() method using service object like this

this.fileSaverServiceObj.exportToExcel(
      [
        {
          Language: 'Python',
          Framework: 'Django'
        }, {
          Language: 'PHP',
          Framework: 'Laravel'
        }
      ], 'test.xls'
    );
1. first parameter is a data array 
2. second parameter is a file name