Fixed formatter {c} not work #175

This commit is contained in:
monitor1394
2021-12-03 13:08:20 +08:00
parent 38584f618b
commit 23a8ce52d1
3 changed files with 5 additions and 3 deletions

View File

@@ -41,8 +41,9 @@
## branch-2.0
* (2021.12.03) Fixed axis boundaryGap display error in some cases #174
* (2021.11.30) Fixed serie ignore display error in some cases #173
* (2021.12.03) Fixed formatter `{c}` not work #175
* (2021.12.03) Fixed axis `boundaryGap` display error in some cases #174
* (2021.11.30) Fixed serie `ignore` display error in some cases #173
## v2.5.0

View File

@@ -41,6 +41,7 @@
## branch-2.0
* (2021.12.03) 修复`Formatter``{c}`通配符不生效的问题 #175
* (2021.12.03) 修复`Axis``boundaryGap`某些情况下显示的问题 #174
* (2021.11.30) 修复`Serie``ignore`某些情况下绘制异常的问题 #173

View File

@@ -237,7 +237,7 @@ namespace XCharts
{
content = content.Replace(old, serieName);
}
else if (p == 'b' || p == 'B' || p == 'c' || p == 'E')
else if (p == 'b' || p == 'B' || p == 'e' || p == 'E')
{
content = content.Replace(old, dataName);
}