Skip to content

Commit

Permalink
reverting previous wrong fix for nissl-lab#930
Browse files Browse the repository at this point in the history
  • Loading branch information
PBrunot committed Oct 29, 2022
1 parent e360f2c commit 75ce5a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenXmlFormats/Drawing/Chart/Chart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8943,7 +8943,7 @@ internal void Write(StreamWriter sw, string nodeName)
XmlHelper.WriteAttribute(sw, "formatCode", this.formatCode);
sw.Write(">");
if (this.v != null)
sw.Write(string.Format("<c:v>{0}</c:v>", this.v.ToString(CultureInfo.InvariantCulture)));
sw.Write(string.Format("<c:v>{0}</c:v>", this.v.ToString()));
sw.Write(string.Format("</c:{0}>", nodeName));
}

Expand Down

0 comments on commit 75ce5a3

Please sign in to comment.