mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-28 12:08:46 +00:00
Fixed formatter {c} not work #175
This commit is contained in:
@@ -41,8 +41,9 @@
|
|||||||
|
|
||||||
## branch-2.0
|
## branch-2.0
|
||||||
|
|
||||||
* (2021.12.03) Fixed axis boundaryGap display error in some cases #174
|
* (2021.12.03) Fixed formatter `{c}` not work #175
|
||||||
* (2021.11.30) Fixed serie ignore display error in some cases #173
|
* (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
|
## v2.5.0
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,7 @@
|
|||||||
|
|
||||||
## branch-2.0
|
## branch-2.0
|
||||||
|
|
||||||
|
* (2021.12.03) 修复`Formatter`的`{c}`通配符不生效的问题 #175
|
||||||
* (2021.12.03) 修复`Axis`的`boundaryGap`某些情况下显示的问题 #174
|
* (2021.12.03) 修复`Axis`的`boundaryGap`某些情况下显示的问题 #174
|
||||||
* (2021.11.30) 修复`Serie`的`ignore`某些情况下绘制异常的问题 #173
|
* (2021.11.30) 修复`Serie`的`ignore`某些情况下绘制异常的问题 #173
|
||||||
|
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ namespace XCharts
|
|||||||
{
|
{
|
||||||
content = content.Replace(old, serieName);
|
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);
|
content = content.Replace(old, dataName);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user