summaryrefslogtreecommitdiff
path: root/drawing.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-02-16 00:02:14 +0800
committerxuri <xuri.me@gmail.com>2021-02-16 00:02:14 +0800
commitbddea1262b9219df224d19b24928d8da78a2f8c0 (patch)
tree0aa179d35adaa4ef6ae5deea59e37900d7d8cd68 /drawing.go
parent36b7990d6ba1036823abf7a01ec8cf74509d4910 (diff)
This closes #785, support to change tab color; new formula function: FISHER, FISHERINV, GAMMA, GAMMALN, MIN, MINA, PERMUT
Diffstat (limited to 'drawing.go')
-rw-r--r--drawing.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/drawing.go b/drawing.go
index 2518651..632b914 100644
--- a/drawing.go
+++ b/drawing.go
@@ -939,7 +939,8 @@ func (f *File) drawChartDLbls(formatSet *formatChart) *cDLbls {
// given format sets.
func (f *File) drawChartSeriesDLbls(formatSet *formatChart) *cDLbls {
dLbls := f.drawChartDLbls(formatSet)
- chartSeriesDLbls := map[string]*cDLbls{Scatter: nil, Surface3D: nil, WireframeSurface3D: nil, Contour: nil, WireframeContour: nil, Bubble: nil, Bubble3D: nil}
+ chartSeriesDLbls := map[string]*cDLbls{
+ Scatter: nil, Surface3D: nil, WireframeSurface3D: nil, Contour: nil, WireframeContour: nil, Bubble: nil, Bubble3D: nil}
if _, ok := chartSeriesDLbls[formatSet.Type]; ok {
return nil
}