From a26675517e6326a7e3d3391f9de79d5efeb8bb90 Mon Sep 17 00:00:00 2001 From: xuri Date: Fri, 8 Jan 2021 23:57:13 +0800 Subject: This closes #756, not set the empty string for the cell when SetCellValue with nil --- xmlChart.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'xmlChart.go') diff --git a/xmlChart.go b/xmlChart.go index fffdddd..ee2ad29 100644 --- a/xmlChart.go +++ b/xmlChart.go @@ -138,25 +138,25 @@ type aSchemeClr struct { } // attrValInt directly maps the val element with integer data type as an -// attribute。 +// attribute. type attrValInt struct { Val *int `xml:"val,attr"` } // attrValFloat directly maps the val element with float64 data type as an -// attribute。 +// attribute. type attrValFloat struct { Val *float64 `xml:"val,attr"` } // attrValBool directly maps the val element with boolean data type as an -// attribute。 +// attribute. type attrValBool struct { Val *bool `xml:"val,attr"` } // attrValString directly maps the val element with string data type as an -// attribute。 +// attribute. type attrValString struct { Val *string `xml:"val,attr"` } -- cgit v1.2.1