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