Browse Source

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

cxs 2 năm trước cách đây
mục cha
commit
d6ae9735e1

+ 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);