소스 검색

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

cxs 2 년 전
부모
커밋
d6ae9735e1
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  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);