From e1d660dda7c02475a8529a252e6c1fd171065429 Mon Sep 17 00:00:00 2001 From: xuri Date: Sat, 12 Mar 2022 00:45:27 +0800 Subject: ref #65, new formula functions: GAMMA.INV and GAMMAINV and format code --- drawing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drawing.go') diff --git a/drawing.go b/drawing.go index 3af789f..e3e7fa8 100644 --- a/drawing.go +++ b/drawing.go @@ -514,7 +514,7 @@ func (f *File) drawBaseChart(formatSet *formatChart) *cPlotArea { // doughnut chart by given format sets. func (f *File) drawDoughnutChart(formatSet *formatChart) *cPlotArea { holeSize := 75 - if formatSet.HoleSize > 0 && formatSet.HoleSize <= 90{ + if formatSet.HoleSize > 0 && formatSet.HoleSize <= 90 { holeSize = formatSet.HoleSize } -- cgit v1.2.1