Exemplo n.º 1
0
 public static CT_Grouping Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_Grouping ctObj = new CT_Grouping();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_Grouping)Enum.Parse(typeof(ST_Grouping), node.Attributes["val"].Value);
     return ctObj;
 }
Exemplo n.º 2
0
 public CT_LineChart()
 {
     this.extLstField = new List<CT_Extension>();
     this.axIdField = new List<CT_UnsignedInt>();
     this.smoothField = new CT_Boolean();
     this.markerField = new CT_Boolean();
     this.upDownBarsField = new CT_UpDownBars();
     this.hiLowLinesField = new CT_ChartLines();
     this.dropLinesField = new CT_ChartLines();
     this.dLblsField = new CT_DLbls();
     this.serField = new List<CT_LineSer>();
     this.varyColorsField = new CT_Boolean();
     this.groupingField = new CT_Grouping();
 }
Exemplo n.º 3
0
 public CT_Line3DChart()
 {
     this.extLstField = new List<CT_Extension>();
     this.axIdField = new List<CT_UnsignedInt>();
     this.gapDepthField = new CT_GapAmount();
     this.dropLinesField = new CT_ChartLines();
     this.dLblsField = new CT_DLbls();
     this.serField = new List<CT_LineSer>();
     this.varyColorsField = new CT_Boolean();
     this.groupingField = new CT_Grouping();
 }
Exemplo n.º 4
0
 public CT_Grouping AddNewGrouping()
 {
     this.groupingField = new CT_Grouping();
     return this.groupingField;
 }