Exemple #1
0
 public static CT_Overlap Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Overlap ctObj = new CT_Overlap();
     if (node.Attributes["val"] != null)
         ctObj.val = XmlHelper.ReadSByte(node.Attributes["val"]);
     return ctObj;
 }
Exemple #2
0
 public CT_BarChart()
 {
     this.extLstField = new List<CT_Extension>();
     this.axIdField = new List<CT_UnsignedInt>();
     this.serLinesField = new List<CT_ChartLines>();
     this.overlapField = new CT_Overlap();
     this.gapWidthField = new CT_GapAmount();
     this.dLblsField = new CT_DLbls();
     this.serField = new List<CT_BarSer>();
     this.varyColorsField = new CT_Boolean();
     this.groupingField = new CT_BarGrouping();
     this.barDirField = new CT_BarDir();
 }