Fixed serie ignore display error #173

This commit is contained in:
monitor1394
2021-11-30 21:40:18 +08:00
parent acae09bf28
commit 7ff1405de5
3 changed files with 6 additions and 1 deletions

View File

@@ -41,6 +41,8 @@
## branch-2.0
* (2021.11.30) Fixed serie ignore display error #173
## v2.5.0
* (2021.11.27) Release `v2.5.0` version

View File

@@ -41,6 +41,8 @@
## branch-2.0
* (2021.11.30) 修复`Serie``ignore`某些情况下绘制异常的问题 #173
## v2.5.0
* (2021.11.27) 发布`v2.5.0`版本

View File

@@ -832,7 +832,8 @@ namespace XCharts
(!lastIsDown && IsInRightOrUp(isYAxis, lastDnPos, tp1)))
{
isStart = true;
Internal_CheckClipAndDrawPolygon(vh, stPos1, tp1, tp2, stPos2, lineColor, serie.clip, grid);
if (stPos1 != Vector3.zero && stPos2 != Vector3.zero)
Internal_CheckClipAndDrawPolygon(vh, stPos1, tp1, tp2, stPos2, lineColor, serie.clip, grid);
}
}
else