diff options
author | xuri <xuri.me@gmail.com> | 2020-01-21 23:29:56 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-01-21 23:29:56 +0800 |
commit | e2bd08c9111b0141c66adf232edb2fd729afa63f (patch) | |
tree | e47339e0ffcd80eb36ca473c0a73f7e1f709185e /drawing.go | |
parent | 0bb245523aada34c7b3d30f0f6e9b16d9f78e7b8 (diff) |
Make DeleteChart delete multiple charts located on the same cell
Diffstat (limited to 'drawing.go')
-rw-r--r-- | drawing.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -563,7 +563,7 @@ func (f *File) drawPie3DChart(formatSet *formatChart) *cPlotArea { // pie chart by given format sets. func (f *File) drawPieOfPieChart(formatSet *formatChart) *cPlotArea { return &cPlotArea{ - PieChart: &cCharts{ + OfPieChart: &cCharts{ OfPieType: &attrValString{ Val: stringPtr("pie"), }, @@ -580,7 +580,7 @@ func (f *File) drawPieOfPieChart(formatSet *formatChart) *cPlotArea { // pie chart by given format sets. func (f *File) drawBarOfPieChart(formatSet *formatChart) *cPlotArea { return &cPlotArea{ - PieChart: &cCharts{ + OfPieChart: &cCharts{ OfPieType: &attrValString{ Val: stringPtr("bar"), }, |