Browse Source

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

cxs 2 years ago
parent
commit
d6ae9735e1
1 changed files with 5 additions and 2 deletions
  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);