2021-03-07 15:02:04 +08:00
// Copyright 2016 - 2021 The excelize Authors. All rights reserved. Use of
2018-09-14 00:44:23 +08:00
// this source code is governed by a BSD-style license that can be found in
// the LICENSE file.
//
// Package excelize providing a set of functions that allow you to write to
2020-06-22 00:14:56 +08:00
// and read from XLSX / XLSM / XLTM files. Supports reading and writing
2021-03-30 23:02:22 +08:00
// spreadsheet documents generated by Microsoft Excel™ 2007 and later. Supports
2020-06-22 00:14:56 +08:00
// complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
2021-04-04 15:29:43 +08:00
// library needs Go version 1.15 or later.
2018-09-14 00:58:48 +08:00
2017-04-23 00:10:23 +08:00
package excelize
import (
"encoding/json"
2020-03-28 23:47:26 +08:00
"encoding/xml"
2019-06-14 00:05:10 +08:00
"errors"
2020-03-28 23:47:26 +08:00
"fmt"
2017-04-23 00:10:23 +08:00
"strconv"
"strings"
)
// This section defines the currently supported chart types.
const (
2019-06-14 00:05:10 +08:00
Area = "area"
AreaStacked = "areaStacked"
AreaPercentStacked = "areaPercentStacked"
Area3D = "area3D"
Area3DStacked = "area3DStacked"
Area3DPercentStacked = "area3DPercentStacked"
Bar = "bar"
BarStacked = "barStacked"
BarPercentStacked = "barPercentStacked"
Bar3DClustered = "bar3DClustered"
Bar3DStacked = "bar3DStacked"
Bar3DPercentStacked = "bar3DPercentStacked"
Bar3DConeClustered = "bar3DConeClustered"
Bar3DConeStacked = "bar3DConeStacked"
Bar3DConePercentStacked = "bar3DConePercentStacked"
Bar3DPyramidClustered = "bar3DPyramidClustered"
Bar3DPyramidStacked = "bar3DPyramidStacked"
Bar3DPyramidPercentStacked = "bar3DPyramidPercentStacked"
Bar3DCylinderClustered = "bar3DCylinderClustered"
Bar3DCylinderStacked = "bar3DCylinderStacked"
Bar3DCylinderPercentStacked = "bar3DCylinderPercentStacked"
Col = "col"
ColStacked = "colStacked"
ColPercentStacked = "colPercentStacked"
Col3D = "col3D"
Col3DClustered = "col3DClustered"
Col3DStacked = "col3DStacked"
Col3DPercentStacked = "col3DPercentStacked"
Col3DCone = "col3DCone"
Col3DConeClustered = "col3DConeClustered"
Col3DConeStacked = "col3DConeStacked"
Col3DConePercentStacked = "col3DConePercentStacked"
Col3DPyramid = "col3DPyramid"
Col3DPyramidClustered = "col3DPyramidClustered"
Col3DPyramidStacked = "col3DPyramidStacked"
Col3DPyramidPercentStacked = "col3DPyramidPercentStacked"
Col3DCylinder = "col3DCylinder"
Col3DCylinderClustered = "col3DCylinderClustered"
Col3DCylinderStacked = "col3DCylinderStacked"
Col3DCylinderPercentStacked = "col3DCylinderPercentStacked"
Doughnut = "doughnut"
Line = "line"
Pie = "pie"
Pie3D = "pie3D"
2020-01-14 00:33:36 +08:00
PieOfPieChart = "pieOfPie"
BarOfPieChart = "barOfPie"
2019-06-14 00:05:10 +08:00
Radar = "radar"
Scatter = "scatter"
2019-06-15 20:55:56 +08:00
Surface3D = "surface3D"
WireframeSurface3D = "wireframeSurface3D"
Contour = "contour"
WireframeContour = "wireframeContour"
2019-06-19 00:01:18 +08:00
Bubble = "bubble"
Bubble3D = "bubble3D"
2017-04-23 00:10:23 +08:00
)
// This section defines the default value of chart properties.
var (
2017-09-30 17:07:59 +08:00
chartView3DRotX = map [ string ] int {
2019-06-14 00:05:10 +08:00
Area : 0 ,
AreaStacked : 0 ,
AreaPercentStacked : 0 ,
Area3D : 15 ,
Area3DStacked : 15 ,
Area3DPercentStacked : 15 ,
Bar : 0 ,
BarStacked : 0 ,
BarPercentStacked : 0 ,
Bar3DClustered : 15 ,
Bar3DStacked : 15 ,
Bar3DPercentStacked : 15 ,
Bar3DConeClustered : 15 ,
Bar3DConeStacked : 15 ,
Bar3DConePercentStacked : 15 ,
Bar3DPyramidClustered : 15 ,
Bar3DPyramidStacked : 15 ,
Bar3DPyramidPercentStacked : 15 ,
Bar3DCylinderClustered : 15 ,
Bar3DCylinderStacked : 15 ,
Bar3DCylinderPercentStacked : 15 ,
Col : 0 ,
ColStacked : 0 ,
ColPercentStacked : 0 ,
Col3D : 15 ,
Col3DClustered : 15 ,
Col3DStacked : 15 ,
Col3DPercentStacked : 15 ,
Col3DCone : 15 ,
Col3DConeClustered : 15 ,
Col3DConeStacked : 15 ,
Col3DConePercentStacked : 15 ,
Col3DPyramid : 15 ,
Col3DPyramidClustered : 15 ,
Col3DPyramidStacked : 15 ,
Col3DPyramidPercentStacked : 15 ,
Col3DCylinder : 15 ,
Col3DCylinderClustered : 15 ,
Col3DCylinderStacked : 15 ,
Col3DCylinderPercentStacked : 15 ,
Doughnut : 0 ,
Line : 0 ,
Pie : 0 ,
Pie3D : 30 ,
2020-01-14 00:33:36 +08:00
PieOfPieChart : 0 ,
BarOfPieChart : 0 ,
2019-06-14 00:05:10 +08:00
Radar : 0 ,
Scatter : 0 ,
2019-06-15 20:55:56 +08:00
Surface3D : 15 ,
WireframeSurface3D : 15 ,
Contour : 90 ,
WireframeContour : 90 ,
2017-09-30 17:07:59 +08:00
}
chartView3DRotY = map [ string ] int {
2019-06-14 00:05:10 +08:00
Area : 0 ,
AreaStacked : 0 ,
AreaPercentStacked : 0 ,
Area3D : 20 ,
Area3DStacked : 20 ,
Area3DPercentStacked : 20 ,
Bar : 0 ,
BarStacked : 0 ,
BarPercentStacked : 0 ,
Bar3DClustered : 20 ,
Bar3DStacked : 20 ,
Bar3DPercentStacked : 20 ,
Bar3DConeClustered : 20 ,
Bar3DConeStacked : 20 ,
Bar3DConePercentStacked : 20 ,
Bar3DPyramidClustered : 20 ,
Bar3DPyramidStacked : 20 ,
Bar3DPyramidPercentStacked : 20 ,
Bar3DCylinderClustered : 20 ,
Bar3DCylinderStacked : 20 ,
Bar3DCylinderPercentStacked : 20 ,
Col : 0 ,
ColStacked : 0 ,
ColPercentStacked : 0 ,
Col3D : 20 ,
Col3DClustered : 20 ,
Col3DStacked : 20 ,
Col3DPercentStacked : 20 ,
Col3DCone : 20 ,
Col3DConeClustered : 20 ,
Col3DConeStacked : 20 ,
Col3DConePercentStacked : 20 ,
Col3DPyramid : 20 ,
Col3DPyramidClustered : 20 ,
Col3DPyramidStacked : 20 ,
Col3DPyramidPercentStacked : 20 ,
Col3DCylinder : 20 ,
Col3DCylinderClustered : 20 ,
Col3DCylinderStacked : 20 ,
Col3DCylinderPercentStacked : 20 ,
Doughnut : 0 ,
Line : 0 ,
Pie : 0 ,
Pie3D : 0 ,
2020-01-14 00:33:36 +08:00
PieOfPieChart : 0 ,
BarOfPieChart : 0 ,
2019-06-14 00:05:10 +08:00
Radar : 0 ,
Scatter : 0 ,
2019-06-15 20:55:56 +08:00
Surface3D : 20 ,
WireframeSurface3D : 20 ,
Contour : 0 ,
WireframeContour : 0 ,
2017-09-30 17:07:59 +08:00
}
2019-09-26 22:28:14 +08:00
plotAreaChartOverlap = map [ string ] int {
BarStacked : 100 ,
BarPercentStacked : 100 ,
ColStacked : 100 ,
ColPercentStacked : 100 ,
2019-06-15 20:55:56 +08:00
}
chartView3DPerspective = map [ string ] int {
Contour : 0 ,
WireframeContour : 0 ,
2017-09-30 17:07:59 +08:00
}
chartView3DRAngAx = map [ string ] int {
2019-06-14 00:05:10 +08:00
Area : 0 ,
AreaStacked : 0 ,
AreaPercentStacked : 0 ,
Area3D : 1 ,
Area3DStacked : 1 ,
Area3DPercentStacked : 1 ,
Bar : 0 ,
BarStacked : 0 ,
BarPercentStacked : 0 ,
Bar3DClustered : 1 ,
Bar3DStacked : 1 ,
Bar3DPercentStacked : 1 ,
Bar3DConeClustered : 1 ,
Bar3DConeStacked : 1 ,
Bar3DConePercentStacked : 1 ,
Bar3DPyramidClustered : 1 ,
Bar3DPyramidStacked : 1 ,
Bar3DPyramidPercentStacked : 1 ,
Bar3DCylinderClustered : 1 ,
Bar3DCylinderStacked : 1 ,
Bar3DCylinderPercentStacked : 1 ,
Col : 0 ,
ColStacked : 0 ,
ColPercentStacked : 0 ,
Col3D : 1 ,
Col3DClustered : 1 ,
Col3DStacked : 1 ,
Col3DPercentStacked : 1 ,
Col3DCone : 1 ,
Col3DConeClustered : 1 ,
Col3DConeStacked : 1 ,
Col3DConePercentStacked : 1 ,
Col3DPyramid : 1 ,
Col3DPyramidClustered : 1 ,
Col3DPyramidStacked : 1 ,
Col3DPyramidPercentStacked : 1 ,
Col3DCylinder : 1 ,
Col3DCylinderClustered : 1 ,
Col3DCylinderStacked : 1 ,
Col3DCylinderPercentStacked : 1 ,
Doughnut : 0 ,
Line : 0 ,
Pie : 0 ,
Pie3D : 0 ,
2020-01-14 00:33:36 +08:00
PieOfPieChart : 0 ,
BarOfPieChart : 0 ,
2019-06-14 00:05:10 +08:00
Radar : 0 ,
Scatter : 0 ,
2019-06-15 20:55:56 +08:00
Surface3D : 0 ,
WireframeSurface3D : 0 ,
Contour : 0 ,
2019-06-19 00:01:18 +08:00
Bubble : 0 ,
Bubble3D : 0 ,
2018-01-08 23:03:59 +08:00
}
2017-09-30 17:07:59 +08:00
chartLegendPosition = map [ string ] string {
"bottom" : "b" ,
"left" : "l" ,
"right" : "r" ,
"top" : "t" ,
"top_right" : "tr" ,
}
2018-01-08 23:03:59 +08:00
chartValAxNumFmtFormatCode = map [ string ] string {
2019-06-14 00:05:10 +08:00
Area : "General" ,
AreaStacked : "General" ,
AreaPercentStacked : "0%" ,
Area3D : "General" ,
Area3DStacked : "General" ,
Area3DPercentStacked : "0%" ,
Bar : "General" ,
BarStacked : "General" ,
BarPercentStacked : "0%" ,
Bar3DClustered : "General" ,
Bar3DStacked : "General" ,
Bar3DPercentStacked : "0%" ,
Bar3DConeClustered : "General" ,
Bar3DConeStacked : "General" ,
Bar3DConePercentStacked : "0%" ,
Bar3DPyramidClustered : "General" ,
Bar3DPyramidStacked : "General" ,
Bar3DPyramidPercentStacked : "0%" ,
Bar3DCylinderClustered : "General" ,
Bar3DCylinderStacked : "General" ,
Bar3DCylinderPercentStacked : "0%" ,
Col : "General" ,
ColStacked : "General" ,
ColPercentStacked : "0%" ,
Col3D : "General" ,
Col3DClustered : "General" ,
Col3DStacked : "General" ,
Col3DPercentStacked : "0%" ,
Col3DCone : "General" ,
Col3DConeClustered : "General" ,
Col3DConeStacked : "General" ,
Col3DConePercentStacked : "0%" ,
Col3DPyramid : "General" ,
Col3DPyramidClustered : "General" ,
Col3DPyramidStacked : "General" ,
Col3DPyramidPercentStacked : "0%" ,
Col3DCylinder : "General" ,
Col3DCylinderClustered : "General" ,
Col3DCylinderStacked : "General" ,
Col3DCylinderPercentStacked : "0%" ,
Doughnut : "General" ,
Line : "General" ,
Pie : "General" ,
Pie3D : "General" ,
2020-01-14 00:33:36 +08:00
PieOfPieChart : "General" ,
BarOfPieChart : "General" ,
2019-06-14 00:05:10 +08:00
Radar : "General" ,
Scatter : "General" ,
2019-06-15 20:55:56 +08:00
Surface3D : "General" ,
WireframeSurface3D : "General" ,
Contour : "General" ,
WireframeContour : "General" ,
2019-06-19 00:01:18 +08:00
Bubble : "General" ,
Bubble3D : "General" ,
2018-12-23 00:07:47 +08:00
}
chartValAxCrossBetween = map [ string ] string {
2019-06-14 00:05:10 +08:00
Area : "midCat" ,
AreaStacked : "midCat" ,
AreaPercentStacked : "midCat" ,
Area3D : "midCat" ,
Area3DStacked : "midCat" ,
Area3DPercentStacked : "midCat" ,
Bar : "between" ,
BarStacked : "between" ,
BarPercentStacked : "between" ,
Bar3DClustered : "between" ,
Bar3DStacked : "between" ,
Bar3DPercentStacked : "between" ,
Bar3DConeClustered : "between" ,
Bar3DConeStacked : "between" ,
Bar3DConePercentStacked : "between" ,
Bar3DPyramidClustered : "between" ,
Bar3DPyramidStacked : "between" ,
Bar3DPyramidPercentStacked : "between" ,
Bar3DCylinderClustered : "between" ,
Bar3DCylinderStacked : "between" ,
Bar3DCylinderPercentStacked : "between" ,
Col : "between" ,
ColStacked : "between" ,
ColPercentStacked : "between" ,
Col3D : "between" ,
Col3DClustered : "between" ,
Col3DStacked : "between" ,
Col3DPercentStacked : "between" ,
Col3DCone : "between" ,
Col3DConeClustered : "between" ,
Col3DConeStacked : "between" ,
Col3DConePercentStacked : "between" ,
Col3DPyramid : "between" ,
Col3DPyramidClustered : "between" ,
Col3DPyramidStacked : "between" ,
Col3DPyramidPercentStacked : "between" ,
Col3DCylinder : "between" ,
Col3DCylinderClustered : "between" ,
Col3DCylinderStacked : "between" ,
Col3DCylinderPercentStacked : "between" ,
Doughnut : "between" ,
Line : "between" ,
Pie : "between" ,
Pie3D : "between" ,
2020-01-14 00:33:36 +08:00
PieOfPieChart : "between" ,
BarOfPieChart : "between" ,
2019-06-14 00:05:10 +08:00
Radar : "between" ,
Scatter : "between" ,
2019-06-15 20:55:56 +08:00
Surface3D : "midCat" ,
WireframeSurface3D : "midCat" ,
Contour : "midCat" ,
WireframeContour : "midCat" ,
2019-06-19 00:01:18 +08:00
Bubble : "midCat" ,
Bubble3D : "midCat" ,
2018-01-08 23:03:59 +08:00
}
plotAreaChartGrouping = map [ string ] string {
2019-06-14 00:05:10 +08:00
Area : "standard" ,
AreaStacked : "stacked" ,
AreaPercentStacked : "percentStacked" ,
Area3D : "standard" ,
Area3DStacked : "stacked" ,
Area3DPercentStacked : "percentStacked" ,
Bar : "clustered" ,
BarStacked : "stacked" ,
BarPercentStacked : "percentStacked" ,
Bar3DClustered : "clustered" ,
Bar3DStacked : "stacked" ,
Bar3DPercentStacked : "percentStacked" ,
Bar3DConeClustered : "clustered" ,
Bar3DConeStacked : "stacked" ,
Bar3DConePercentStacked : "percentStacked" ,
Bar3DPyramidClustered : "clustered" ,
Bar3DPyramidStacked : "stacked" ,
Bar3DPyramidPercentStacked : "percentStacked" ,
Bar3DCylinderClustered : "clustered" ,
Bar3DCylinderStacked : "stacked" ,
Bar3DCylinderPercentStacked : "percentStacked" ,
Col : "clustered" ,
ColStacked : "stacked" ,
ColPercentStacked : "percentStacked" ,
Col3D : "standard" ,
Col3DClustered : "clustered" ,
Col3DStacked : "stacked" ,
Col3DPercentStacked : "percentStacked" ,
Col3DCone : "standard" ,
Col3DConeClustered : "clustered" ,
Col3DConeStacked : "stacked" ,
Col3DConePercentStacked : "percentStacked" ,
Col3DPyramid : "standard" ,
Col3DPyramidClustered : "clustered" ,
Col3DPyramidStacked : "stacked" ,
Col3DPyramidPercentStacked : "percentStacked" ,
Col3DCylinder : "standard" ,
Col3DCylinderClustered : "clustered" ,
Col3DCylinderStacked : "stacked" ,
Col3DCylinderPercentStacked : "percentStacked" ,
Line : "standard" ,
2018-03-05 21:23:52 +08:00
}
plotAreaChartBarDir = map [ string ] string {
2019-06-14 00:05:10 +08:00
Bar : "bar" ,
BarStacked : "bar" ,
BarPercentStacked : "bar" ,
Bar3DClustered : "bar" ,
Bar3DStacked : "bar" ,
Bar3DPercentStacked : "bar" ,
Bar3DConeClustered : "bar" ,
Bar3DConeStacked : "bar" ,
Bar3DConePercentStacked : "bar" ,
Bar3DPyramidClustered : "bar" ,
Bar3DPyramidStacked : "bar" ,
Bar3DPyramidPercentStacked : "bar" ,
Bar3DCylinderClustered : "bar" ,
Bar3DCylinderStacked : "bar" ,
Bar3DCylinderPercentStacked : "bar" ,
Col : "col" ,
ColStacked : "col" ,
ColPercentStacked : "col" ,
Col3D : "col" ,
Col3DClustered : "col" ,
Col3DStacked : "col" ,
Col3DPercentStacked : "col" ,
Col3DCone : "col" ,
Col3DConeStacked : "col" ,
Col3DConeClustered : "col" ,
Col3DConePercentStacked : "col" ,
Col3DPyramid : "col" ,
Col3DPyramidClustered : "col" ,
Col3DPyramidStacked : "col" ,
Col3DPyramidPercentStacked : "col" ,
Col3DCylinder : "col" ,
Col3DCylinderClustered : "col" ,
Col3DCylinderStacked : "col" ,
Col3DCylinderPercentStacked : "col" ,
Line : "standard" ,
2018-01-08 23:03:59 +08:00
}
2018-03-29 20:17:07 +08:00
orientation = map [ bool ] string {
true : "maxMin" ,
false : "minMax" ,
}
catAxPos = map [ bool ] string {
true : "t" ,
false : "b" ,
}
valAxPos = map [ bool ] string {
true : "r" ,
false : "l" ,
}
2019-06-15 20:55:56 +08:00
valTickLblPos = map [ string ] string {
Contour : "none" ,
WireframeContour : "none" ,
}
2017-04-23 00:10:23 +08:00
)
2018-08-06 10:21:24 +08:00
// parseFormatChartSet provides a function to parse the format settings of the
2017-04-23 00:10:23 +08:00
// chart with default value.
2018-05-27 11:25:55 +08:00
func parseFormatChartSet ( formatSet string ) ( * formatChart , error ) {
2017-04-23 00:10:23 +08:00
format := formatChart {
2018-05-09 19:44:04 +08:00
Dimension : formatChartDimension {
Width : 480 ,
Height : 290 ,
} ,
2017-04-23 00:10:23 +08:00
Format : formatPicture {
FPrintsWithSheet : true ,
FLocksWithSheet : false ,
NoChangeAspect : false ,
OffsetX : 0 ,
OffsetY : 0 ,
XScale : 1.0 ,
YScale : 1.0 ,
} ,
Legend : formatChartLegend {
Position : "bottom" ,
ShowLegendKey : false ,
} ,
Title : formatChartTitle {
Name : " " ,
} ,
2021-04-10 00:15:39 +08:00
VaryColors : true ,
2017-04-23 00:10:23 +08:00
ShowBlanksAs : "gap" ,
}
2018-05-27 11:25:55 +08:00
err := json . Unmarshal ( [ ] byte ( formatSet ) , & format )
return & format , err
2017-04-23 00:10:23 +08:00
}
// AddChart provides the method to add chart in a sheet by given chart format
// set (such as offset, scale, aspect ratio setting and print settings) and
2018-03-05 21:23:52 +08:00
// properties set. For example, create 3D clustered column chart with data
2020-01-14 00:33:36 +08:00
// Sheet1!$E$1:$L$15:
2017-04-23 00:10:23 +08:00
//
// package main
//
2020-02-19 00:08:10 +08:00
// import (
// "fmt"
//
2020-12-14 09:56:42 +08:00
// "github.com/360EntSecGroup-Skylar/excelize/v2"
2020-02-19 00:08:10 +08:00
// )
2017-04-23 00:10:23 +08:00
//
// func main() {
2020-12-27 00:18:54 +08:00
// categories := map[string]string{
// "A2": "Small", "A3": "Normal", "A4": "Large",
// "B1": "Apple", "C1": "Orange", "D1": "Pear"}
// values := map[string]int{
// "B2": 2, "C2": 3, "D2": 3, "B3": 5, "C3": 2, "D3": 4, "B4": 6, "C4": 7, "D4": 8}
2019-04-21 00:04:42 +08:00
// f := excelize.NewFile()
2017-04-23 00:39:14 +08:00
// for k, v := range categories {
2019-04-21 00:04:42 +08:00
// f.SetCellValue("Sheet1", k, v)
2017-04-23 00:39:14 +08:00
// }
// for k, v := range values {
2019-04-21 00:04:42 +08:00
// f.SetCellValue("Sheet1", k, v)
// }
2020-12-27 00:18:54 +08:00
// if err := f.AddChart("Sheet1", "E1", `{
// "type": "col3DClustered",
// "series": [
// {
// "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":
// {
// "name": "Fruit 3D Clustered Column Chart"
// },
// "legend":
// {
// "none": false,
// "position": "bottom",
// "show_legend_key": false
// },
// "plotarea":
// {
// "show_bubble_size": true,
// "show_cat_name": false,
// "show_leader_lines": false,
// "show_percent": true,
// "show_series_name": true,
// "show_val": true
// },
// "show_blanks_as": "zero",
// "x_axis":
// {
// "reverse_order": true
// },
// "y_axis":
// {
// "maximum": 7.5,
// "minimum": 0.5
// }
// }`); err != nil {
2020-02-19 00:08:10 +08:00
// fmt.Println(err)
2019-04-21 00:04:42 +08:00
// return
2017-04-23 00:39:14 +08:00
// }
2020-11-10 23:48:09 +08:00
// // Save spreadsheet by the given path.
2020-01-14 00:33:36 +08:00
// if err := f.SaveAs("Book1.xlsx"); err != nil {
2020-02-19 00:08:10 +08:00
// fmt.Println(err)
2017-04-23 00:10:23 +08:00
// }
// }
//
// The following shows the type of chart supported by excelize:
//
2019-06-14 00:05:10 +08:00
// Type | Chart
// -----------------------------+------------------------------
// area | 2D area chart
// areaStacked | 2D stacked area chart
// areaPercentStacked | 2D 100% stacked area chart
// area3D | 3D area chart
// area3DStacked | 3D stacked area chart
// area3DPercentStacked | 3D 100% stacked area chart
// bar | 2D clustered bar chart
// barStacked | 2D stacked bar chart
// barPercentStacked | 2D 100% stacked bar chart
// bar3DClustered | 3D clustered bar chart
// bar3DStacked | 3D stacked bar chart
// bar3DPercentStacked | 3D 100% stacked bar chart
// bar3DConeClustered | 3D cone clustered bar chart
// bar3DConeStacked | 3D cone stacked bar chart
// bar3DConePercentStacked | 3D cone percent bar chart
// bar3DPyramidClustered | 3D pyramid clustered bar chart
// bar3DPyramidStacked | 3D pyramid stacked bar chart
// bar3DPyramidPercentStacked | 3D pyramid percent stacked bar chart
// bar3DCylinderClustered | 3D cylinder clustered bar chart
// bar3DCylinderStacked | 3D cylinder stacked bar chart
// bar3DCylinderPercentStacked | 3D cylinder percent stacked bar chart
// col | 2D clustered column chart
// colStacked | 2D stacked column chart
// colPercentStacked | 2D 100% stacked column chart
// col3DClustered | 3D clustered column chart
// col3D | 3D column chart
// col3DStacked | 3D stacked column chart
// col3DPercentStacked | 3D 100% stacked column chart
// col3DCone | 3D cone column chart
// col3DConeClustered | 3D cone clustered column chart
// col3DConeStacked | 3D cone stacked column chart
// col3DConePercentStacked | 3D cone percent stacked column chart
// col3DPyramid | 3D pyramid column chart
// col3DPyramidClustered | 3D pyramid clustered column chart
// col3DPyramidStacked | 3D pyramid stacked column chart
// col3DPyramidPercentStacked | 3D pyramid percent stacked column chart
// col3DCylinder | 3D cylinder column chart
// col3DCylinderClustered | 3D cylinder clustered column chart
// col3DCylinderStacked | 3D cylinder stacked column chart
// col3DCylinderPercentStacked | 3D cylinder percent stacked column chart
// doughnut | doughnut chart
// line | line chart
// pie | pie chart
// pie3D | 3D pie chart
2020-01-14 00:33:36 +08:00
// pieOfPie | pie of pie chart
// barOfPie | bar of pie chart
2019-06-14 00:05:10 +08:00
// radar | radar chart
// scatter | scatter chart
2019-06-15 20:55:56 +08:00
// surface3D | 3D surface chart
// wireframeSurface3D | 3D wireframe surface chart
// contour | contour chart
2019-06-19 00:01:18 +08:00
// wireframeContour | wireframe contour chart
// bubble | bubble chart
// bubble3D | 3D bubble chart
2017-04-23 00:10:23 +08:00
//
// In Excel a chart series is a collection of information that defines which data is plotted such as values, axis labels and formatting.
//
// The series options that can be set are:
//
// name
// categories
// values
2019-10-21 00:04:18 +08:00
// line
2020-12-14 20:56:51 +08:00
// marker
2017-04-23 00:10:23 +08:00
//
2018-02-12 11:45:42 +08:00
// name: Set the name for the series. The name is displayed in the chart legend and in the formula bar. The name property is optional and if it isn't supplied it will default to Series 1..n. The name can also be a formula such as Sheet1!$A$1
2017-04-23 00:10:23 +08:00
//
// categories: This sets the chart category labels. The category is more or less the same as the X axis. In most chart types the categories property is optional and the chart will just assume a sequential series from 1..n.
//
// values: This is the most important property of a series and is the only mandatory option for every chart object. This option links the chart with the worksheet data that it displays.
//
2019-10-21 00:04:18 +08:00
// line: This sets the line format of the line chart. The line property is optional and if it isn't supplied it will default style. The options that can be set is width. The range of width is 0.25pt - 999pt. If the value of width is outside the range, the default width of the line is 2pt.
//
2020-12-14 20:56:51 +08:00
// marker: This sets the marker of the line chart and scatter chart. The range of optional field 'size' is 2-72 (default value is 5). The enumeration value of optional field 'symbol' are (default value is 'auto'):
//
// circle
// dash
// diamond
// dot
// none
// picture
// plus
// square
// star
// triangle
// x
// auto
//
2017-04-23 00:10:23 +08:00
// Set properties of the chart legend. The options that can be set are:
//
2020-12-27 00:18:54 +08:00
// none
2017-04-23 00:10:23 +08:00
// position
// show_legend_key
//
2020-12-27 00:18:54 +08:00
// none: Specified if show the legend without overlapping the chart. The default value is 'false'.
//
// position: Set the position of the chart legend. The default legend position is right. This parameter only takes effect when 'none' is false. The available positions are:
2017-04-23 00:10:23 +08:00
//
// top
// bottom
// left
// right
// top_right
//
// show_legend_key: Set the legend keys shall be shown in data labels. The default value is false.
//
// Set properties of the chart title. The properties that can be set are:
//
// title
//
2018-02-12 11:45:42 +08:00
// name: Set the name (title) for the chart. The name is displayed above the chart. The name can also be a formula such as Sheet1!$A$1 or a list with a sheetname. The name property is optional. The default is to have no chart title.
2017-04-23 00:10:23 +08:00
//
// Specifies how blank cells are plotted on the chart by show_blanks_as. The default value is gap. The options that can be set are:
//
// gap
// span
// zero
//
// gap: Specifies that blank values shall be left as a gap.
//
2020-12-14 20:56:51 +08:00
// span: Specifies that blank values shall be spanned with a line.
2017-04-23 00:10:23 +08:00
//
// zero: Specifies that blank values shall be treated as zero.
//
2021-04-10 00:15:39 +08:00
// Specifies that each data marker in the series has a different color by vary_colors. The default value is true.
//
2017-04-23 00:10:23 +08:00
// Set chart offset, scale, aspect ratio setting and print settings by format, same as function AddPicture.
//
// Set the position of the chart plot area by plotarea. The properties that can be set are:
//
// show_bubble_size
// show_cat_name
// show_leader_lines
// show_percent
// show_series_name
// show_val
//
// show_bubble_size: Specifies the bubble size shall be shown in a data label. The show_bubble_size property is optional. The default value is false.
2017-05-13 14:12:43 +08:00
//
2017-04-23 00:10:23 +08:00
// show_cat_name: Specifies that the category name shall be shown in the data label. The show_cat_name property is optional. The default value is true.
2017-05-13 14:12:43 +08:00
//
2017-04-23 00:10:23 +08:00
// show_leader_lines: Specifies leader lines shall be shown for data labels. The show_leader_lines property is optional. The default value is false.
2017-05-13 14:12:43 +08:00
//
2017-04-23 00:10:23 +08:00
// show_percent: Specifies that the percentage shall be shown in a data label. The show_percent property is optional. The default value is false.
2017-05-13 14:12:43 +08:00
//
2017-04-23 00:10:23 +08:00
// show_series_name: Specifies that the series name shall be shown in a data label. The show_series_name property is optional. The default value is false.
2017-05-13 14:12:43 +08:00
//
2017-04-23 00:10:23 +08:00
// show_val: Specifies that the value shall be shown in a data label. The show_val property is optional. The default value is false.
//
2019-12-25 00:00:50 +08:00
// Set the primary horizontal and vertical axis options by x_axis and y_axis. The properties of x_axis that can be set are:
2018-03-29 20:17:07 +08:00
//
2021-06-11 22:48:37 +08:00
// none
2019-10-27 14:16:02 +08:00
// major_grid_lines
// minor_grid_lines
2019-12-29 16:02:31 +08:00
// tick_label_skip
2019-12-25 00:00:50 +08:00
// reverse_order
// maximum
// minimum
//
// The properties of y_axis that can be set are:
//
2021-06-11 22:48:37 +08:00
// none
2019-12-25 00:00:50 +08:00
// major_grid_lines
// minor_grid_lines
// major_unit
2018-03-29 20:17:07 +08:00
// reverse_order
// maximum
// minimum
//
2021-06-11 22:48:37 +08:00
// none: Disable axes.
//
2019-10-27 14:16:02 +08:00
// major_grid_lines: Specifies major gridlines.
//
// minor_grid_lines: Specifies minor gridlines.
//
2019-12-25 00:00:50 +08:00
// major_unit: Specifies the distance between major ticks. Shall contain a positive floating-point number. The major_unit property is optional. The default value is auto.
//
// tick_label_skip: Specifies how many tick labels to skip between label that is drawn. The tick_label_skip property is optional. The default value is auto.
//
2018-03-29 20:17:07 +08:00
// reverse_order: Specifies that the categories or values on reverse order (orientation of the chart). The reverse_order property is optional. The default value is false.
2018-07-13 17:40:47 +08:00
//
2018-03-29 20:17:07 +08:00
// maximum: Specifies that the fixed maximum, 0 is auto. The maximum property is optional. The default value is auto.
2018-07-13 17:40:47 +08:00
//
2018-03-29 20:17:07 +08:00
// minimum: Specifies that the fixed minimum, 0 is auto. The minimum property is optional. The default value is auto.
//
2018-05-11 10:14:18 +08:00
// Set chart size by dimension property. The dimension property is optional. The default width is 480, and height is 290.
//
2020-01-21 23:29:56 +08:00
// combo: Specifies the create a chart that combines two or more chart types
// in a single chart. For example, create a clustered column - line chart with
// data Sheet1!$E$1:$L$15:
2020-01-14 00:33:36 +08:00
//
// package main
//
2020-02-19 00:08:10 +08:00
// import (
// "fmt"
//
2020-12-14 09:56:42 +08:00
// "github.com/360EntSecGroup-Skylar/excelize/v2"
2020-02-19 00:08:10 +08:00
// )
2020-01-14 00:33:36 +08:00
//
// func main() {
2020-12-27 00:18:54 +08:00
// categories := map[string]string{
// "A2": "Small", "A3": "Normal", "A4": "Large",
// "B1": "Apple", "C1": "Orange", "D1": "Pear"}
// values := map[string]int{
// "B2": 2, "C2": 3, "D2": 3, "B3": 5, "C3": 2, "D3": 4, "B4": 6, "C4": 7, "D4": 8}
2020-01-14 00:33:36 +08:00
// f := excelize.NewFile()
// for k, v := range categories {
// f.SetCellValue("Sheet1", k, v)
// }
// for k, v := range values {
// f.SetCellValue("Sheet1", k, v)
// }
2020-12-27 00:18:54 +08:00
// if err := f.AddChart("Sheet1", "E1", `{
// "type": "col",
// "series": [
// {
// "name": "Sheet1!$A$2",
// "categories": "",
// "values": "Sheet1!$B$2:$D$2"
// },
// {
// "name": "Sheet1!$A$3",
// "categories": "Sheet1!$B$1:$D$1",
// "values": "Sheet1!$B$3:$D$3"
// }],
// "format":
// {
// "x_scale": 1.0,
// "y_scale": 1.0,
// "x_offset": 15,
// "y_offset": 10,
// "print_obj": true,
// "lock_aspect_ratio": false,
// "locked": false
// },
// "title":
// {
// "name": "Clustered Column - Line Chart"
// },
// "legend":
// {
// "position": "left",
// "show_legend_key": false
// },
// "plotarea":
// {
// "show_bubble_size": true,
// "show_cat_name": false,
// "show_leader_lines": false,
// "show_percent": true,
// "show_series_name": true,
// "show_val": true
// }
// }`, `{
// "type": "line",
// "series": [
// {
// "name": "Sheet1!$A$4",
// "categories": "Sheet1!$B$1:$D$1",
// "values": "Sheet1!$B$4:$D$4",
// "marker":
// {
// "symbol": "none",
// "size": 10
// }
// }],
// "format":
// {
// "x_scale": 1,
// "y_scale": 1,
// "x_offset": 15,
// "y_offset": 10,
// "print_obj": true,
// "lock_aspect_ratio": false,
// "locked": false
// },
// "legend":
// {
// "position": "right",
// "show_legend_key": false
// },
// "plotarea":
// {
// "show_bubble_size": true,
// "show_cat_name": false,
// "show_leader_lines": false,
// "show_percent": true,
// "show_series_name": true,
// "show_val": true
// }
// }`); err != nil {
2020-02-19 00:08:10 +08:00
// fmt.Println(err)
2020-01-14 00:33:36 +08:00
// return
// }
2020-11-10 23:48:09 +08:00
// // Save spreadsheet file by the given path.
2020-01-14 00:33:36 +08:00
// if err := f.SaveAs("Book1.xlsx"); err != nil {
2020-02-19 00:08:10 +08:00
// fmt.Println(err)
2020-01-14 00:33:36 +08:00
// }
// }
//
2020-01-16 01:05:22 +08:00
func ( f * File ) AddChart ( sheet , cell , format string , combo ... string ) error {
2017-04-23 00:10:23 +08:00
// Read sheet data.
2020-11-10 23:48:09 +08:00
ws , err := f . workSheetReader ( sheet )
2019-04-15 11:22:57 +08:00
if err != nil {
return err
}
2020-03-29 18:44:24 +08:00
formatSet , comboCharts , err := f . getFormatChart ( format , combo )
if err != nil {
return err
2019-06-14 00:05:10 +08:00
}
2017-04-23 00:10:23 +08:00
// Add first picture for given sheet, create xl/drawings/ and xl/drawings/_rels/ folder.
drawingID := f . countDrawings ( ) + 1
chartID := f . countCharts ( ) + 1
drawingXML := "xl/drawings/drawing" + strconv . Itoa ( drawingID ) + ".xml"
2020-11-10 23:48:09 +08:00
drawingID , drawingXML = f . prepareDrawing ( ws , drawingID , sheet , drawingXML )
2019-09-16 01:17:35 +08:00
drawingRels := "xl/drawings/_rels/drawing" + strconv . Itoa ( drawingID ) + ".xml.rels"
drawingRID := f . addRels ( drawingRels , SourceRelationshipChart , "../charts/chart" + strconv . Itoa ( chartID ) + ".xml" , "" )
2019-03-23 20:08:06 +08:00
err = f . addDrawingChart ( sheet , drawingXML , cell , formatSet . Dimension . Width , formatSet . Dimension . Height , drawingRID , & formatSet . Format )
if err != nil {
return err
}
2020-01-16 01:05:22 +08:00
f . addChart ( formatSet , comboCharts )
2017-05-24 14:17:35 +08:00
f . addContentTypePart ( chartID , "chart" )
f . addContentTypePart ( drawingID , "drawings" )
2020-07-18 15:15:16 +08:00
f . addSheetNameSpace ( sheet , SourceRelationship )
2018-05-27 11:25:55 +08:00
return err
2017-04-23 00:10:23 +08:00
}
2020-03-28 23:47:26 +08:00
// AddChartSheet provides the method to create a chartsheet by given chart
// format set (such as offset, scale, aspect ratio setting and print settings)
// and properties set. In Excel a chartsheet is a worksheet that only contains
// a chart.
func ( f * File ) AddChartSheet ( sheet , format string , combo ... string ) error {
// Check if the worksheet already exists
2020-04-23 02:01:14 +08:00
if f . GetSheetIndex ( sheet ) != - 1 {
2021-05-10 00:09:24 +08:00
return ErrExistsWorksheet
2020-03-28 23:47:26 +08:00
}
2020-03-29 18:44:24 +08:00
formatSet , comboCharts , err := f . getFormatChart ( format , combo )
2020-03-28 23:47:26 +08:00
if err != nil {
return err
}
cs := xlsxChartsheet {
2021-03-07 15:02:04 +08:00
SheetViews : & xlsxChartsheetViews {
SheetView : [ ] * xlsxChartsheetView { { ZoomScaleAttr : 100 , ZoomToFitAttr : true } } ,
2020-03-28 23:47:26 +08:00
} ,
}
2020-03-29 18:44:24 +08:00
f . SheetCount ++
2020-03-28 23:47:26 +08:00
wb := f . workbookReader ( )
sheetID := 0
for _ , v := range wb . Sheets . Sheet {
if v . SheetID > sheetID {
sheetID = v . SheetID
}
}
sheetID ++
path := "xl/chartsheets/sheet" + strconv . Itoa ( sheetID ) + ".xml"
f . sheetMap [ trimSheetName ( sheet ) ] = path
f . Sheet [ path ] = nil
drawingID := f . countDrawings ( ) + 1
chartID := f . countCharts ( ) + 1
drawingXML := "xl/drawings/drawing" + strconv . Itoa ( drawingID ) + ".xml"
2020-03-31 00:02:00 +08:00
f . prepareChartSheetDrawing ( & cs , drawingID , sheet )
2020-03-28 23:47:26 +08:00
drawingRels := "xl/drawings/_rels/drawing" + strconv . Itoa ( drawingID ) + ".xml.rels"
drawingRID := f . addRels ( drawingRels , SourceRelationshipChart , "../charts/chart" + strconv . Itoa ( chartID ) + ".xml" , "" )
2020-03-29 18:44:24 +08:00
f . addSheetDrawingChart ( drawingXML , drawingRID , & formatSet . Format )
2020-03-28 23:47:26 +08:00
f . addChart ( formatSet , comboCharts )
f . addContentTypePart ( chartID , "chart" )
f . addContentTypePart ( sheetID , "chartsheet" )
f . addContentTypePart ( drawingID , "drawings" )
2020-11-04 00:28:20 +08:00
// Update workbook.xml.rels
2020-11-06 20:03:13 +08:00
rID := f . addRels ( f . getWorkbookRelsPath ( ) , SourceRelationshipChartsheet , fmt . Sprintf ( "/xl/chartsheets/sheet%d.xml" , sheetID ) , "" )
2020-11-04 00:28:20 +08:00
// Update workbook.xml
2020-03-28 23:47:26 +08:00
f . setWorkbook ( sheet , sheetID , rID )
2020-03-29 18:44:24 +08:00
chartsheet , _ := xml . Marshal ( cs )
2020-07-18 15:15:16 +08:00
f . addSheetNameSpace ( sheet , NameSpaceSpreadSheet )
f . saveFileList ( path , replaceRelationshipsBytes ( f . replaceNameSpaceBytes ( path , chartsheet ) ) )
2020-03-28 23:47:26 +08:00
return err
}
2020-03-29 18:44:24 +08:00
// getFormatChart provides a function to check format set of the chart and
// create chart format.
func ( f * File ) getFormatChart ( format string , combo [ ] string ) ( * formatChart , [ ] * formatChart , error ) {
comboCharts := [ ] * formatChart { }
formatSet , err := parseFormatChartSet ( format )
if err != nil {
return formatSet , comboCharts , err
}
for _ , comboFormat := range combo {
comboChart , err := parseFormatChartSet ( comboFormat )
if err != nil {
return formatSet , comboCharts , err
}
if _ , ok := chartValAxNumFmtFormatCode [ comboChart . Type ] ; ! ok {
return formatSet , comboCharts , errors . New ( "unsupported chart type " + comboChart . Type )
}
comboCharts = append ( comboCharts , comboChart )
}
if _ , ok := chartValAxNumFmtFormatCode [ formatSet . Type ] ; ! ok {
return formatSet , comboCharts , errors . New ( "unsupported chart type " + formatSet . Type )
}
return formatSet , comboCharts , err
}
2020-01-19 00:23:00 +08:00
// DeleteChart provides a function to delete chart in XLSX by given worksheet
// and cell name.
func ( f * File ) DeleteChart ( sheet , cell string ) ( err error ) {
col , row , err := CellNameToCoordinates ( cell )
if err != nil {
return
2017-04-23 00:10:23 +08:00
}
2020-01-19 00:23:00 +08:00
col --
row --
ws , err := f . workSheetReader ( sheet )
if err != nil {
return
2017-04-23 00:10:23 +08:00
}
2020-01-19 00:23:00 +08:00
if ws . Drawing == nil {
return
2017-04-23 00:10:23 +08:00
}
2020-01-19 00:23:00 +08:00
drawingXML := strings . Replace ( f . getSheetRelationshipsTargetByID ( sheet , ws . Drawing . RID ) , ".." , "xl" , - 1 )
2020-01-22 01:08:18 +08:00
return f . deleteDrawing ( col , row , drawingXML , "Chart" )
2017-05-24 14:17:35 +08:00
}
2020-01-19 00:23:00 +08:00
// countCharts provides a function to get chart files count storage in the
// folder xl/charts.
func ( f * File ) countCharts ( ) int {
count := 0
for k := range f . XLSX {
if strings . Contains ( k , "xl/charts/chart" ) {
count ++
}
2017-04-23 00:10:23 +08:00
}
2020-01-19 00:23:00 +08:00
return count
2017-04-23 00:10:23 +08:00
}
2019-10-21 00:04:18 +08:00
// ptToEMUs provides a function to convert pt to EMUs, 1 pt = 12700 EMUs. The
// range of pt is 0.25pt - 999pt. If the value of pt is outside the range, the
// default EMUs will be returned.
func ( f * File ) ptToEMUs ( pt float64 ) int {
if 0.25 > pt || pt > 999 {
return 25400
}
return int ( 12700 * pt )
}