[fix] 修复ChartLayout布局下时Label显示不正常的问题 (#231)

This commit is contained in:
monitor1394
2022-10-21 22:56:16 +08:00
parent bbab8d9b75
commit 42a77a9439
2 changed files with 2 additions and 0 deletions

View File

@@ -59,6 +59,7 @@
## master
* (2022.10.21) 修复`Chart``Layout`布局下时`Label`显示不正常的问题 (#231)
* (2022.10.21) 修复`Unity2019.2`上的兼容问题
* (2022.10.18) 优化`Axis`的数值表现
* (2022.10.15) 修复`Axis``Label``DataZoom`开启时可能显示不正常的问题 (#227)

View File

@@ -300,6 +300,7 @@ namespace XCharts.Runtime
base.SetAllComponentDirty();
m_Theme.SetAllDirty();
foreach (var com in m_Components) com.SetAllDirty();
foreach (var handler in m_SerieHandlers) handler.InitComponent();
m_RefreshChart = true;
}