2019-09-16 01:17:35 +08:00
< p align = "center" > < img width = "650" src = "./excelize.svg" alt = "Excelize logo" > < / p >
2018-03-27 21:01:07 +08:00
2018-12-05 00:27:19 +08:00
< p align = "center" >
2021-07-28 00:38:09 +08:00
< a href = "https://github.com/xuri/excelize/actions/workflows/go.yml" > < img src = "https://github.com/xuri/excelize/actions/workflows/go.yml/badge.svg" alt = "Build Status" > < / a >
< a href = "https://codecov.io/gh/qax-os/excelize" > < img src = "https://codecov.io/gh/qax-os/excelize/branch/master/graph/badge.svg" alt = "Code Coverage" > < / a >
2022-04-24 23:43:19 +08:00
< a href = "https://goreportcard.com/report/github.com/xuri/excelize/v2" > < img src = "https://goreportcard.com/badge/github.com/xuri/excelize/v2" alt = "Go Report Card" > < / a >
2021-08-02 00:00:26 +08:00
< a href = "https://pkg.go.dev/github.com/xuri/excelize/v2" > < img src = "https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white" alt = "go.dev" > < / a >
2018-12-05 00:27:19 +08:00
< a href = "https://opensource.org/licenses/BSD-3-Clause" > < img src = "https://img.shields.io/badge/license-bsd-orange.svg" alt = "Licenses" > < / a >
2020-11-19 21:38:35 +08:00
< a href = "https://www.paypal.com/paypalme/xuri" > < img src = "https://img.shields.io/badge/Donate-PayPal-green.svg" alt = "Donate" > < / a >
2018-12-05 00:27:19 +08:00
< / p >
2018-03-27 21:01:07 +08:00
2018-12-05 00:27:19 +08:00
# Excelize
2018-03-27 21:01:07 +08:00
## 简介
2022-10-13 00:02:53 +08:00
Excelize 是 Go 语言编写的用于操作 Office Excel 文档基础库,基于 ECMA-376, ISO/IEC 29500 国际标准。可以使用它来读取、写入由 Microsoft Excel™ 2007 及以上版本创建的电子表格文档。支持 XLAM / XLSM / XLSX / XLTM / XLTX 等多种文档格式,高度兼容带有样式、图片(表)、透视表、切片器等复杂组件的文档,并提供流式读写函数,用于处理包含大规模数据的工作簿。可应用于各类报表平台、云计算、边缘计算等系统。使用本类库要求使用的 Go 语言为 1.16 或更高版本,完整的使用文档请访问 [go.dev ](https://pkg.go.dev/github.com/xuri/excelize/v2 ) 或查看 [参考文档 ](https://xuri.me/excelize/ )。
2018-03-27 21:01:07 +08:00
## 快速上手
### 安装
2019-03-20 15:13:41 +08:00
```bash
2021-07-28 00:38:09 +08:00
go get github.com/xuri/excelize
2018-03-27 21:01:07 +08:00
```
2021-12-26 14:55:53 +08:00
- 如果您使用 [Go Modules ](https://go.dev/blog/using-go-modules ) 管理软件包,请使用下面的命令来安装最新版本。
2020-04-23 02:01:14 +08:00
```bash
2021-07-28 00:38:09 +08:00
go get github.com/xuri/excelize/v2
2020-04-23 02:01:14 +08:00
```
2018-03-27 21:01:07 +08:00
### 创建 Excel 文档
下面是一个创建 Excel 文档的简单例子:
```go
package main
2020-02-19 00:08:10 +08:00
import (
"fmt"
2021-07-28 00:38:09 +08:00
"github.com/xuri/excelize/v2"
2020-02-19 00:08:10 +08:00
)
2018-03-27 21:01:07 +08:00
func main() {
2019-04-20 14:57:50 +08:00
f := excelize.NewFile()
2023-01-02 11:47:31 +08:00
defer func() {
if err := f.Close(); err != nil {
fmt.Println(err)
}
}()
2018-03-27 21:01:07 +08:00
// 创建一个工作表
2023-01-02 11:47:31 +08:00
index, err := f.NewSheet("Sheet2")
if err != nil {
fmt.Println(err)
return
}
2018-03-27 21:01:07 +08:00
// 设置单元格的值
2019-04-20 14:57:50 +08:00
f.SetCellValue("Sheet2", "A2", "Hello world.")
f.SetCellValue("Sheet1", "B2", 100)
2018-03-27 21:01:07 +08:00
// 设置工作簿的默认工作表
2019-04-20 14:57:50 +08:00
f.SetActiveSheet(index)
2018-03-27 21:01:07 +08:00
// 根据指定路径保存文件
2019-12-29 16:02:31 +08:00
if err := f.SaveAs("Book1.xlsx"); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
}
}
```
### 读取 Excel 文档
下面是读取 Excel 文档的例子:
```go
package main
2020-02-19 00:08:10 +08:00
import (
"fmt"
2021-07-28 00:38:09 +08:00
"github.com/xuri/excelize/v2"
2020-02-19 00:08:10 +08:00
)
2018-03-27 21:01:07 +08:00
func main() {
2019-12-29 16:02:31 +08:00
f, err := excelize.OpenFile("Book1.xlsx")
2018-03-27 21:01:07 +08:00
if err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
return
}
2021-11-17 00:25:36 +08:00
defer func() {
// 关闭工作簿
if err := f.Close(); err != nil {
fmt.Println(err)
}
}()
2018-03-27 21:01:07 +08:00
// 获取工作表中指定单元格的值
2019-04-23 13:34:24 +08:00
cell, err := f.GetCellValue("Sheet1", "B2")
if err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2019-04-23 13:34:24 +08:00
return
}
2020-02-19 00:08:10 +08:00
fmt.Println(cell)
2018-03-27 21:01:07 +08:00
// 获取 Sheet1 上所有单元格
2019-04-20 14:57:50 +08:00
rows, err := f.GetRows("Sheet1")
2021-06-11 22:48:37 +08:00
if err != nil {
fmt.Println(err)
return
}
2018-03-27 21:01:07 +08:00
for _, row := range rows {
for _, colCell := range row {
2020-02-19 00:08:10 +08:00
fmt.Print(colCell, "\t")
2018-03-27 21:01:07 +08:00
}
2020-02-19 00:08:10 +08:00
fmt.Println()
2018-03-27 21:01:07 +08:00
}
}
```
### 在 Excel 文档中创建图表
使用 Excelize 生成图表十分简单,仅需几行代码。您可以根据工作表中的已有数据构建图表,或向工作表中添加数据并创建图表。
2020-12-22 08:47:46 +08:00
< p align = "center" > < img width = "650" src = "./test/images/chart.png" alt = "使用 Excelize 在 Excel 电子表格文档中创建图表" > < / p >
2018-03-27 21:01:07 +08:00
```go
package main
2020-02-19 00:08:10 +08:00
import (
"fmt"
2021-07-28 00:38:09 +08:00
"github.com/xuri/excelize/v2"
2020-02-19 00:08:10 +08:00
)
2018-03-27 21:01:07 +08:00
func main() {
2019-04-20 14:57:50 +08:00
f := excelize.NewFile()
2023-01-02 11:47:31 +08:00
defer func() {
if err := f.Close(); err != nil {
fmt.Println(err)
}
}()
Breaking change: changed the function signature for 11 exported functions
* Change
`func (f *File) NewConditionalStyle(style string) (int, error)`
to
`func (f *File) NewConditionalStyle(style *Style) (int, error)`
* Change
`func (f *File) NewStyle(style interface{}) (int, error)`
to
`func (f *File) NewStyle(style *Style) (int, error)`
* Change
`func (f *File) AddChart(sheet, cell, opts string, combo ...string) error`
to
`func (f *File) AddChart(sheet, cell string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddChartSheet(sheet, opts string, combo ...string) error`
to
`func (f *File) AddChartSheet(sheet string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddShape(sheet, cell, opts string) error`
to
`func (f *File) AddShape(sheet, cell string, opts *Shape) error`
* Change
`func (f *File) AddPictureFromBytes(sheet, cell, opts, name, extension string, file []byte) error`
to
`func (f *File) AddPictureFromBytes(sheet, cell, name, extension string, file []byte, opts *PictureOptions) error`
* Change
`func (f *File) AddTable(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AddTable(sheet, reference string, opts *TableOptions) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) AutoFilter(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AutoFilter(sheet, reference string, opts *AutoFilterOptions) error`
* Change
`func (f *File) SetPanes(sheet, panes string) error`
to
`func (f *File) SetPanes(sheet string, panes *Panes) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) SetConditionalFormat(sheet, reference, opts string) error`
to
`func (f *File) SetConditionalFormat(sheet, reference string, opts []ConditionalFormatOptions) error`
* Add exported types:
* AutoFilterListOptions
* AutoFilterOptions
* Chart
* ChartAxis
* ChartDimension
* ChartLegend
* ChartLine
* ChartMarker
* ChartPlotArea
* ChartSeries
* ChartTitle
* ConditionalFormatOptions
* PaneOptions
* Panes
* PictureOptions
* Shape
* ShapeColor
* ShapeLine
* ShapeParagraph
* TableOptions
* This added support for set sheet visible as very hidden
* Return error when missing required parameters for set defined name
* Update unit test and comments
2022-12-30 00:50:08 +08:00
for idx, row := range [][]interface{}{
{nil, "Apple", "Orange", "Pear"}, {"Small", 2, 3, 3},
{"Normal", 5, 2, 4}, {"Large", 6, 7, 8},
} {
cell, err := excelize.CoordinatesToCellName(1, idx+1)
if err != nil {
fmt.Println(err)
return
}
f.SetSheetRow("Sheet1", cell, & row)
2019-04-20 14:57:50 +08:00
}
Breaking change: changed the function signature for 11 exported functions
* Change
`func (f *File) NewConditionalStyle(style string) (int, error)`
to
`func (f *File) NewConditionalStyle(style *Style) (int, error)`
* Change
`func (f *File) NewStyle(style interface{}) (int, error)`
to
`func (f *File) NewStyle(style *Style) (int, error)`
* Change
`func (f *File) AddChart(sheet, cell, opts string, combo ...string) error`
to
`func (f *File) AddChart(sheet, cell string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddChartSheet(sheet, opts string, combo ...string) error`
to
`func (f *File) AddChartSheet(sheet string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddShape(sheet, cell, opts string) error`
to
`func (f *File) AddShape(sheet, cell string, opts *Shape) error`
* Change
`func (f *File) AddPictureFromBytes(sheet, cell, opts, name, extension string, file []byte) error`
to
`func (f *File) AddPictureFromBytes(sheet, cell, name, extension string, file []byte, opts *PictureOptions) error`
* Change
`func (f *File) AddTable(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AddTable(sheet, reference string, opts *TableOptions) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) AutoFilter(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AutoFilter(sheet, reference string, opts *AutoFilterOptions) error`
* Change
`func (f *File) SetPanes(sheet, panes string) error`
to
`func (f *File) SetPanes(sheet string, panes *Panes) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) SetConditionalFormat(sheet, reference, opts string) error`
to
`func (f *File) SetConditionalFormat(sheet, reference string, opts []ConditionalFormatOptions) error`
* Add exported types:
* AutoFilterListOptions
* AutoFilterOptions
* Chart
* ChartAxis
* ChartDimension
* ChartLegend
* ChartLine
* ChartMarker
* ChartPlotArea
* ChartSeries
* ChartTitle
* ConditionalFormatOptions
* PaneOptions
* Panes
* PictureOptions
* Shape
* ShapeColor
* ShapeLine
* ShapeParagraph
* TableOptions
* This added support for set sheet visible as very hidden
* Return error when missing required parameters for set defined name
* Update unit test and comments
2022-12-30 00:50:08 +08:00
if err := f.AddChart("Sheet1", "E1", & excelize.Chart{
Type: "col3DClustered",
Series: []excelize.ChartSeries{
{
Name: "Sheet1!$A$2",
Categories: "Sheet1!$B$1:$D$1",
Values: "Sheet1!$B$2:$D$2",
},
{
Name: "Sheet1!$A$3",
Categories: "Sheet1!$B$1:$D$1",
Values: "Sheet1!$B$3:$D$3",
},
{
Name: "Sheet1!$A$4",
Categories: "Sheet1!$B$1:$D$1",
Values: "Sheet1!$B$4:$D$4",
}},
Title: excelize.ChartTitle{
Name: "Fruit 3D Clustered Column Chart",
2020-12-22 08:47:46 +08:00
},
Breaking change: changed the function signature for 11 exported functions
* Change
`func (f *File) NewConditionalStyle(style string) (int, error)`
to
`func (f *File) NewConditionalStyle(style *Style) (int, error)`
* Change
`func (f *File) NewStyle(style interface{}) (int, error)`
to
`func (f *File) NewStyle(style *Style) (int, error)`
* Change
`func (f *File) AddChart(sheet, cell, opts string, combo ...string) error`
to
`func (f *File) AddChart(sheet, cell string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddChartSheet(sheet, opts string, combo ...string) error`
to
`func (f *File) AddChartSheet(sheet string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddShape(sheet, cell, opts string) error`
to
`func (f *File) AddShape(sheet, cell string, opts *Shape) error`
* Change
`func (f *File) AddPictureFromBytes(sheet, cell, opts, name, extension string, file []byte) error`
to
`func (f *File) AddPictureFromBytes(sheet, cell, name, extension string, file []byte, opts *PictureOptions) error`
* Change
`func (f *File) AddTable(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AddTable(sheet, reference string, opts *TableOptions) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) AutoFilter(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AutoFilter(sheet, reference string, opts *AutoFilterOptions) error`
* Change
`func (f *File) SetPanes(sheet, panes string) error`
to
`func (f *File) SetPanes(sheet string, panes *Panes) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) SetConditionalFormat(sheet, reference, opts string) error`
to
`func (f *File) SetConditionalFormat(sheet, reference string, opts []ConditionalFormatOptions) error`
* Add exported types:
* AutoFilterListOptions
* AutoFilterOptions
* Chart
* ChartAxis
* ChartDimension
* ChartLegend
* ChartLine
* ChartMarker
* ChartPlotArea
* ChartSeries
* ChartTitle
* ConditionalFormatOptions
* PaneOptions
* Panes
* PictureOptions
* Shape
* ShapeColor
* ShapeLine
* ShapeParagraph
* TableOptions
* This added support for set sheet visible as very hidden
* Return error when missing required parameters for set defined name
* Update unit test and comments
2022-12-30 00:50:08 +08:00
}); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2019-04-20 14:57:50 +08:00
return
2018-03-27 21:01:07 +08:00
}
// 根据指定路径保存文件
2019-12-29 16:02:31 +08:00
if err := f.SaveAs("Book1.xlsx"); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
}
}
```
### 向 Excel 文档中插入图片
```go
package main
import (
2020-02-19 00:08:10 +08:00
"fmt"
2018-03-27 21:01:07 +08:00
_ "image/gif"
_ "image/jpeg"
_ "image/png"
2021-07-28 00:38:09 +08:00
"github.com/xuri/excelize/v2"
2018-03-27 21:01:07 +08:00
)
func main() {
2019-12-29 16:02:31 +08:00
f, err := excelize.OpenFile("Book1.xlsx")
2018-03-27 21:01:07 +08:00
if err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
return
}
2021-11-17 00:25:36 +08:00
defer func() {
// 关闭工作簿
if err := f.Close(); err != nil {
fmt.Println(err)
}
}()
2018-03-27 21:01:07 +08:00
// 插入图片
Breaking change: changed the function signature for 11 exported functions
* Change
`func (f *File) NewConditionalStyle(style string) (int, error)`
to
`func (f *File) NewConditionalStyle(style *Style) (int, error)`
* Change
`func (f *File) NewStyle(style interface{}) (int, error)`
to
`func (f *File) NewStyle(style *Style) (int, error)`
* Change
`func (f *File) AddChart(sheet, cell, opts string, combo ...string) error`
to
`func (f *File) AddChart(sheet, cell string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddChartSheet(sheet, opts string, combo ...string) error`
to
`func (f *File) AddChartSheet(sheet string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddShape(sheet, cell, opts string) error`
to
`func (f *File) AddShape(sheet, cell string, opts *Shape) error`
* Change
`func (f *File) AddPictureFromBytes(sheet, cell, opts, name, extension string, file []byte) error`
to
`func (f *File) AddPictureFromBytes(sheet, cell, name, extension string, file []byte, opts *PictureOptions) error`
* Change
`func (f *File) AddTable(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AddTable(sheet, reference string, opts *TableOptions) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) AutoFilter(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AutoFilter(sheet, reference string, opts *AutoFilterOptions) error`
* Change
`func (f *File) SetPanes(sheet, panes string) error`
to
`func (f *File) SetPanes(sheet string, panes *Panes) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) SetConditionalFormat(sheet, reference, opts string) error`
to
`func (f *File) SetConditionalFormat(sheet, reference string, opts []ConditionalFormatOptions) error`
* Add exported types:
* AutoFilterListOptions
* AutoFilterOptions
* Chart
* ChartAxis
* ChartDimension
* ChartLegend
* ChartLine
* ChartMarker
* ChartPlotArea
* ChartSeries
* ChartTitle
* ConditionalFormatOptions
* PaneOptions
* Panes
* PictureOptions
* Shape
* ShapeColor
* ShapeLine
* ShapeParagraph
* TableOptions
* This added support for set sheet visible as very hidden
* Return error when missing required parameters for set defined name
* Update unit test and comments
2022-12-30 00:50:08 +08:00
if err := f.AddPicture("Sheet1", "A2", "image.png", nil); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
}
// 在工作表中插入图片,并设置图片的缩放比例
2020-12-22 08:47:46 +08:00
if err := f.AddPicture("Sheet1", "D2", "image.jpg",
2023-01-02 11:47:31 +08:00
& excelize.GraphicOptions{ScaleX: 0.5, ScaleY: 0.5}); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
}
// 在工作表中插入图片,并设置图片的打印属性
2023-01-02 11:47:31 +08:00
enable, disable := true, false
Breaking change: changed the function signature for 11 exported functions
* Change
`func (f *File) NewConditionalStyle(style string) (int, error)`
to
`func (f *File) NewConditionalStyle(style *Style) (int, error)`
* Change
`func (f *File) NewStyle(style interface{}) (int, error)`
to
`func (f *File) NewStyle(style *Style) (int, error)`
* Change
`func (f *File) AddChart(sheet, cell, opts string, combo ...string) error`
to
`func (f *File) AddChart(sheet, cell string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddChartSheet(sheet, opts string, combo ...string) error`
to
`func (f *File) AddChartSheet(sheet string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddShape(sheet, cell, opts string) error`
to
`func (f *File) AddShape(sheet, cell string, opts *Shape) error`
* Change
`func (f *File) AddPictureFromBytes(sheet, cell, opts, name, extension string, file []byte) error`
to
`func (f *File) AddPictureFromBytes(sheet, cell, name, extension string, file []byte, opts *PictureOptions) error`
* Change
`func (f *File) AddTable(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AddTable(sheet, reference string, opts *TableOptions) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) AutoFilter(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AutoFilter(sheet, reference string, opts *AutoFilterOptions) error`
* Change
`func (f *File) SetPanes(sheet, panes string) error`
to
`func (f *File) SetPanes(sheet string, panes *Panes) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) SetConditionalFormat(sheet, reference, opts string) error`
to
`func (f *File) SetConditionalFormat(sheet, reference string, opts []ConditionalFormatOptions) error`
* Add exported types:
* AutoFilterListOptions
* AutoFilterOptions
* Chart
* ChartAxis
* ChartDimension
* ChartLegend
* ChartLine
* ChartMarker
* ChartPlotArea
* ChartSeries
* ChartTitle
* ConditionalFormatOptions
* PaneOptions
* Panes
* PictureOptions
* Shape
* ShapeColor
* ShapeLine
* ShapeParagraph
* TableOptions
* This added support for set sheet visible as very hidden
* Return error when missing required parameters for set defined name
* Update unit test and comments
2022-12-30 00:50:08 +08:00
if err := f.AddPicture("Sheet1", "H2", "image.gif",
2023-01-02 11:47:31 +08:00
& excelize.GraphicOptions{
Breaking change: changed the function signature for 11 exported functions
* Change
`func (f *File) NewConditionalStyle(style string) (int, error)`
to
`func (f *File) NewConditionalStyle(style *Style) (int, error)`
* Change
`func (f *File) NewStyle(style interface{}) (int, error)`
to
`func (f *File) NewStyle(style *Style) (int, error)`
* Change
`func (f *File) AddChart(sheet, cell, opts string, combo ...string) error`
to
`func (f *File) AddChart(sheet, cell string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddChartSheet(sheet, opts string, combo ...string) error`
to
`func (f *File) AddChartSheet(sheet string, chart *ChartOptions, combo ...*ChartOptions) error`
* Change
`func (f *File) AddShape(sheet, cell, opts string) error`
to
`func (f *File) AddShape(sheet, cell string, opts *Shape) error`
* Change
`func (f *File) AddPictureFromBytes(sheet, cell, opts, name, extension string, file []byte) error`
to
`func (f *File) AddPictureFromBytes(sheet, cell, name, extension string, file []byte, opts *PictureOptions) error`
* Change
`func (f *File) AddTable(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AddTable(sheet, reference string, opts *TableOptions) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) AutoFilter(sheet, hCell, vCell, opts string) error`
to
`func (f *File) AutoFilter(sheet, reference string, opts *AutoFilterOptions) error`
* Change
`func (f *File) SetPanes(sheet, panes string) error`
to
`func (f *File) SetPanes(sheet string, panes *Panes) error`
* Change
`func (sw *StreamWriter) AddTable(hCell, vCell, opts string) error`
to
`func (sw *StreamWriter) AddTable(reference string, opts *TableOptions) error`
* Change
`func (f *File) SetConditionalFormat(sheet, reference, opts string) error`
to
`func (f *File) SetConditionalFormat(sheet, reference string, opts []ConditionalFormatOptions) error`
* Add exported types:
* AutoFilterListOptions
* AutoFilterOptions
* Chart
* ChartAxis
* ChartDimension
* ChartLegend
* ChartLine
* ChartMarker
* ChartPlotArea
* ChartSeries
* ChartTitle
* ConditionalFormatOptions
* PaneOptions
* Panes
* PictureOptions
* Shape
* ShapeColor
* ShapeLine
* ShapeParagraph
* TableOptions
* This added support for set sheet visible as very hidden
* Return error when missing required parameters for set defined name
* Update unit test and comments
2022-12-30 00:50:08 +08:00
PrintObject: & enable,
LockAspectRatio: false,
OffsetX: 15,
OffsetY: 10,
Locked: & disable,
}); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
}
2021-09-18 23:20:24 +08:00
// 保存工作簿
2019-12-29 16:02:31 +08:00
if err = f.Save(); err != nil {
2020-02-19 00:08:10 +08:00
fmt.Println(err)
2018-03-27 21:01:07 +08:00
}
}
```
## 社区合作
2021-04-30 00:14:42 +08:00
欢迎您为此项目贡献代码,提出建议或问题、修复 Bug 以及参与讨论对新功能的想法。 XML 符合标准: [part 1 of the 5th edition of the ECMA-376 Standard for Office Open XML ](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/ )。
2018-03-27 21:01:07 +08:00
## 开源许可
本项目遵循 BSD 3-Clause 开源许可协议,访问 [https://opensource.org/licenses/BSD-3-Clause ](https://opensource.org/licenses/BSD-3-Clause ) 查看许可协议文件。
2019-01-01 13:20:14 +08:00
2019-01-05 10:55:43 +08:00
Excel 徽标是 [Microsoft Corporation ](https://aka.ms/trademarks-usage ) 的商标,项目的图片是一种改编。
gopher.{ai,svg,png} 由 [Takuya Ueda ](https://twitter.com/tenntenn ) 创作,遵循 [Creative Commons 3.0 Attributions license ](http://creativecommons.org/licenses/by/3.0/ ) 创作共用授权条款。