修复SerieClone时动画异常问题 (#320)

This commit is contained in:
monitor1394
2024-06-06 13:07:34 +08:00
parent 96cb7ffc74
commit 922901380e
2 changed files with 2 additions and 0 deletions

View File

@@ -73,6 +73,7 @@ slug: /changelog
## master
* (2024.06.06) 修复`Serie``Clone`时动画异常问题 (#320)
* (2024.06.04) 修复`Serie``state`在代码动态设置时不刷新的问题
* (2024.05.29) 调整`XCharts``Hierarchy`视图下的右键菜单到`UI/XCharts`
* (2024.05.29) 增加`3D`坐标系对类目轴的支持

View File

@@ -2083,6 +2083,7 @@ namespace XCharts.Runtime
{
var newSerie = Activator.CreateInstance(GetType()) as Serie;
SerieHelper.CopySerie(this, newSerie);
newSerie.animation = new AnimationStyle();
return newSerie;
}
}