Example #1
0
 public static CT_NumDataSource Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_NumDataSource ctObj = new CT_NumDataSource();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "numLit")
             ctObj.numLit = CT_NumData.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "numRef")
             ctObj.numRef = CT_NumRef.Parse(childNode, namespaceManager);
     }
     return ctObj;
 }
Example #2
0
 public CT_NumDataSource AddNewYVal()
 {
     this.yValField = new CT_NumDataSource();
     return this.yValField;
 }
Example #3
0
 public CT_SurfaceSer()
 {
     this.extLstField = new List<CT_Extension>();
     this.valField = new CT_NumDataSource();
     this.catField = new CT_AxDataSource();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }
Example #4
0
 public CT_PieSer()
 {
     this.extLstField = new List<CT_Extension>();
     this.valField = new CT_NumDataSource();
     this.catField = new CT_AxDataSource();
     this.dLblsField = new CT_DLbls();
     this.dPtField = new List<CT_DPt>();
     this.explosionField = new CT_UnsignedInt();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }
Example #5
0
 public CT_LineSer()
 {
     this.extLstField = new List<CT_Extension>();
     this.smoothField = new CT_Boolean();
     this.valField = new CT_NumDataSource();
     this.catField = new CT_AxDataSource();
     this.errBarsField = new CT_ErrBars();
     this.trendlineField = new List<CT_Trendline>();
     this.dLblsField = new CT_DLbls();
     this.dPtField = new List<CT_DPt>();
     this.markerField = new CT_Marker();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }
Example #6
0
 public CT_BarSer()
 {
     this.extLstField = new List<CT_Extension>();
     this.shapeField = new CT_Shape();
     this.valField = new CT_NumDataSource();
     this.catField = new CT_AxDataSource();
     this.errBarsField = new CT_ErrBars();
     this.trendlineField = new List<CT_Trendline>();
     this.dLblsField = new CT_DLbls();
     this.dPtField = new List<CT_DPt>();
     this.pictureOptionsField = new CT_PictureOptions();
     this.invertIfNegativeField = new CT_Boolean();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }
Example #7
0
 public CT_ErrBars()
 {
     this.extLstField = new List<CT_Extension>();
     this.valField = new CT_Double();
     this.minusField = new CT_NumDataSource();
     this.plusField = new CT_NumDataSource();
     this.noEndCapField = new CT_Boolean();
     this.errValTypeField = new CT_ErrValType();
     this.errBarTypeField = new CT_ErrBarType();
     this.errDirField = new CT_ErrDir();
 }
Example #8
0
 public CT_BubbleSer()
 {
     this.extLstField = new List<CT_Extension>();
     this.bubble3DField = new CT_Boolean();
     this.bubbleSizeField = new CT_NumDataSource();
     this.yValField = new CT_NumDataSource();
     this.xValField = new CT_AxDataSource();
     this.errBarsField = new List<CT_ErrBars>();
     this.trendlineField = new List<CT_Trendline>();
     this.dLblsField = new CT_DLbls();
     this.dPtField = new List<CT_DPt>();
     this.invertIfNegativeField = new CT_Boolean();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }
Example #9
0
 public CT_AreaSer()
 {
     this.extLstField = new List<CT_Extension>();
     this.valField = new CT_NumDataSource();
     this.catField = new CT_AxDataSource();
     this.errBarsField = new List<CT_ErrBars>();
     this.trendlineField = new List<CT_Trendline>();
     this.dLblsField = new CT_DLbls();
     this.dPtField = new List<CT_DPt>();
     this.pictureOptionsField = new CT_PictureOptions();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }