ng-anzflex-excel-viewer
v1.0.6
Published
excel viewer for angular projects
Downloads
51
Maintainers
Readme
AnzflexExcelViewer
Required Angular Version 20.3.0.
installation
npm i ngx-anzflex-excel-viewerimport lib
import { AnzflexExcelViewer } from 'ng-anzflex-excel-viewer';
@NgModule({
declarations: [
...
],
imports: [
AnzflexExcelViewer,
...
]
})
export class AppModule { }
How to Use It
Add this into youre component.html and component.ts files
<ng-anzflex-excel-viewer
[data]="data"
[base64]="base64"
[editable]="false"
id="source"
saveDataOutput="edited-only"
(onDataSave)="onSave($event)"
[sheetNames]="['Car Brannds','User List']"
(onScrollEnd)="onScroll($event)"
/>
data = {
"Car Brannds": [
["Year", "Car Name", "Car Type", "Horse power", "Engine"],
["2017", "Telsa", 11, 12, 13],
["2018", "Audi", 11, 14, 13],
["2019", "BMW", 15, 12, 13]
]
}License
MIT
