From bddea1262b9219df224d19b24928d8da78a2f8c0 Mon Sep 17 00:00:00 2001 From: xuri Date: Tue, 16 Feb 2021 00:02:14 +0800 Subject: This closes #785, support to change tab color; new formula function: FISHER, FISHERINV, GAMMA, GAMMALN, MIN, MINA, PERMUT --- drawing.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'drawing.go') 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 } -- cgit v1.2.1