Explorar el Código

分布图排列图无效颗粒不显示

cxs hace 3 años
padre
commit
d6ae9735e1
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. 5 2
      OTSIncAReportApp/2-CommonFunction/CommonClass/DisplayField.cs

+ 5 - 2
OTSIncAReportApp/2-CommonFunction/CommonClass/DisplayField.cs

@@ -60,8 +60,11 @@ namespace OTSIncAReportGraph
             //再循环计算所有的Particle对象
             foreach (Particle particle in list_particle)
             {
-
-
+                //分布图排列图无效颗粒不显示
+                if (particle.TypeId == -1)
+                {
+                    continue;
+                }
                 //创建DParticle颗粒
                 DisplayParticle dp = new DisplayParticle(particle);