Example #1
0
 public static CT_Marker Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Marker ctObj = new CT_Marker();
     ctObj.extLst = new List<CT_Extension>();
     foreach (XmlNode childNode in node.ChildNodes)
     {
         if (childNode.LocalName == "symbol")
             ctObj.symbol = CT_MarkerStyle.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "size")
             ctObj.size = CT_MarkerSize.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "spPr")
             ctObj.spPr = CT_ShapeProperties.Parse(childNode, namespaceManager);
         else if (childNode.LocalName == "extLst")
             ctObj.extLst.Add(CT_Extension.Parse(childNode, namespaceManager));
     }
     return ctObj;
 }
Example #2
0
 public CT_Marker AddNewMarker()
 {
     this.markerField = new CT_Marker();
     return this.markerField;
 }
Example #3
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 #4
0
 public CT_RadarSer()
 {
     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.markerField = new CT_Marker();
     this.txField = new CT_SerTx();
     this.orderField = new CT_UnsignedInt();
     this.idxField = new CT_UnsignedInt();
 }
Example #5
0
 public CT_DPt()
 {
     this.extLstField = new List<CT_Extension>();
     this.pictureOptionsField = new CT_PictureOptions();
     this.explosionField = new CT_UnsignedInt();
     this.bubble3DField = new CT_Boolean();
     this.markerField = new CT_Marker();
     this.invertIfNegativeField = new CT_Boolean();
     this.idxField = new CT_UnsignedInt();
 }
Example #6
0
 public CT_PivotFmt()
 {
     this.extLstField = new List<CT_Extension>();
     this.dLblField = new CT_DLbl();
     this.markerField = new CT_Marker();
     this.idxField = new CT_UnsignedInt();
 }