优化清空并重新添加数据后的自动刷新问题

This commit is contained in:
monitor1394
2020-03-11 08:41:42 +08:00
parent cb86799e44
commit 4606d65a5c
7 changed files with 29 additions and 8 deletions

View File

@@ -1561,6 +1561,15 @@ namespace XCharts
return m_Ignore && Mathf.Approximately(value, m_IgnoreValue);
}
public bool IsIngorePoint(int index)
{
if (index >= 0 && index < dataPoints.Count)
{
return ChartHelper.IsIngore(dataPoints[index]);
}
return false;
}
/// <summary>
/// 更新运行时中心点和半径
/// </summary>