Example #1
0
 private void AddAIndicator(IPart ind)
 {
     if (_is == null)
     {
         _is = new IndicatorMetrixPart();
     }
     //if (ind.Metrix != null)
     //    ind.Metrix.RemovePart(ind);
     ind.Metrix = this;
     _is.AddAPart(ind);
 }
Example #2
0
 private void AddAGroupDimension(IPart gd)
 {
     if (_gds == null)
     {
         _gds = new IndicatorMetrixPart();
     }
     //if (gd.Metrix != null)
     //    gd.Metrix.RemovePart(gd);
     gd.Metrix = this;
     _gds.AddAPart(gd);
 }