mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-20 23:40:10 +00:00
优化清空并重新添加数据后的自动刷新问题
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user