[bug] fix serieData.index error

This commit is contained in:
monitor1394
2022-08-09 08:01:19 +08:00
parent 19914586ae
commit d1f9c77571
2 changed files with 1 additions and 1 deletions

View File

@@ -57,6 +57,7 @@
## master
* (2022.08.09) 修复`Serie`的数据项索引异常引起的其他问题
* (2022.08.08) 优化`Serie`的数据项索引维护,增加检测和修复功能
* (2022.07.29) 修复在某些`Unity`版本导入后图表创建异常的问题
* (2022.07.29) 增加`Axis``Time`时间轴时,支持次刻度和次分割线

View File

@@ -218,7 +218,6 @@ namespace XCharts.Runtime
for (int j = 0; j < serie.data.Count; j++)
{
var serieData = serie.data[j];
serieData.index = count;
serieData.labelObject = null;
if (AddSerieLabel(m_SerieLabelRoot, serieData, ref count))
{