protobi / js-xlsx

XLSX / XLSM / XLSB (Excel 2007+ Spreadsheet) / ODS parser and writer
http://oss.sheetjs.com/js-xlsx
Other
817 stars 417 forks source link

How to add comment to a cell? #74

Closed shikelong closed 7 years ago

shikelong commented 7 years ago

I add a comment to a cell. but It not work. There are no comments in the cell.


if(!ws.A1.c) ws.A1.c = [];
ws.A1.c.push({a:"SheetJS", t:"I'm a little comment, short and stout!"});

Regards.