Ejemplo n.º 1
0
 public CT_Bar3DChart()
 {
     this.extLstField = new List<CT_Extension>();
     this.axIdField = new List<CT_UnsignedInt>();
     this.shapeField = new CT_Shape();
     this.gapDepthField = new CT_GapAmount();
     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();
 }
Ejemplo n.º 2
0
 public static CT_Shape Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Shape ctObj = new CT_Shape();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_Shape)Enum.Parse(typeof(ST_Shape), node.Attributes["val"].Value);
     return ctObj;
 }
Ejemplo n.º 3
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();
 }