diff options
author | xuri <xuri.me@gmail.com> | 2021-02-16 00:02:14 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-02-16 00:02:14 +0800 |
commit | bddea1262b9219df224d19b24928d8da78a2f8c0 (patch) | |
tree | 0aa179d35adaa4ef6ae5deea59e37900d7d8cd68 /drawing.go | |
parent | 36b7990d6ba1036823abf7a01ec8cf74509d4910 (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.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 } |