diff options
author | xuri <xuri.me@gmail.com> | 2022-10-08 22:08:06 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-10-08 22:08:16 +0800 |
commit | b1e776ee33ec78b7f6c2a0de8109009963dea521 (patch) | |
tree | 2a769b090171be17d3d1d6dacb7cc987f34d28ad /stream.go | |
parent | 57051326d06cea02774dc0ace3293906ec5f281e (diff) |
Support to set summary columns to appear to the right of detail in an outline
- Simplify calculation engine code
- Update documentation for the functions
- Update dependencies module
Diffstat (limited to 'stream.go')
-rw-r--r-- | stream.go | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -40,12 +40,12 @@ type StreamWriter struct { // NewStreamWriter return stream writer struct by given worksheet name for // generate new worksheet with large amounts of data. Note that after set -// rows, you must call the 'Flush' method to end the streaming writing -// process and ensure that the order of line numbers is ascending, the common -// API and stream API can't be work mixed to writing data on the worksheets, -// you can't get cell value when in-memory chunks data over 16MB. For -// example, set data for worksheet of size 102400 rows x 50 columns with -// numbers and style: +// rows, you must call the 'Flush' method to end the streaming writing process +// and ensure that the order of line numbers is ascending, the normal mode +// functions and stream mode functions can't be work mixed to writing data on +// the worksheets, you can't get cell value when in-memory chunks data over +// 16MB. For example, set data for worksheet of size 102400 rows x 50 columns +// with numbers and style: // // file := excelize.NewFile() // streamWriter, err := file.NewStreamWriter("Sheet1") |