修复饼图在Inspector上修改相关参数后不刷新的问题

This commit is contained in:
monitor1394
2023-07-28 08:09:31 +08:00
parent f867ac7efd
commit 18c0d3218d
3 changed files with 16 additions and 2 deletions

View File

@@ -172,6 +172,12 @@ namespace XCharts.Runtime
DefaultChart();
Awake();
}
protected override void OnValidate()
{
base.OnValidate();
foreach (var handler in m_SerieHandlers) handler.OnValidate();
}
#endif
protected override void Start()