Reputation: 225
I have to render an excel sheet in ag grid on an angulart2 project. The data will be displayed in form of excel sheet where Columns will be maximum used columns in excel A, B, C...etc. and rows will be maximum used rows in excel 1,2,3..etc. Each cell in the sheet will have its own unique style and data. How can I render such grid in ag grid where I will set each cells styling separately without any performance lag?
Upvotes: 2
Views: 2129
Reputation: 2541
There's a good example of excel sheet rendering using ag-grid and sheetJS which should give you all the options that you need:
https://www.ag-grid.com/javascript-grid-excel/?framework=javascript#example-custom-xlsx&gsc.tab=0
Upvotes: 2