Exemple #1
0
 public CT_ValAx()
 {
     this.extLstField = new List<CT_Extension>();
     this.dispUnitsField = new CT_DispUnits();
     this.minorUnitField = new CT_AxisUnit();
     this.majorUnitField = new CT_AxisUnit();
     this.crossBetweenField = new CT_CrossBetween();
     this.crossAxField = new CT_UnsignedInt();
     this.tickLblPosField = new CT_TickLblPos();
     this.minorTickMarkField = new CT_TickMark();
     this.majorTickMarkField = new CT_TickMark();
     this.numFmtField = new CT_NumFmt();
     this.titleField = new CT_Title();
     this.minorGridlinesField = new CT_ChartLines();
     this.majorGridlinesField = new CT_ChartLines();
     this.axPosField = new CT_AxPos();
     this.deleteField = new CT_Boolean();
     this.scalingField = new CT_Scaling();
     this.axIdField = new CT_UnsignedInt();
 }
Exemple #2
0
 public static CT_AxisUnit Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_AxisUnit ctObj = new CT_AxisUnit();
     if (node.Attributes["val"] != null)
         ctObj.val = XmlHelper.ReadDouble(node.Attributes["val"]);
     return ctObj;
 }
Exemple #3
0
 public CT_DateAx()
 {
     this.extLstField = new List<CT_Extension>();
     this.minorTimeUnitField = new CT_TimeUnit();
     this.minorUnitField = new CT_AxisUnit();
     this.majorTimeUnitField = new CT_TimeUnit();
     this.majorUnitField = new CT_AxisUnit();
     this.baseTimeUnitField = new CT_TimeUnit();
     this.lblOffsetField = new CT_LblOffset();
     this.autoField = new CT_Boolean();
     this.crossAxField = new CT_UnsignedInt();
     this.tickLblPosField = new CT_TickLblPos();
     this.minorTickMarkField = new CT_TickMark();
     this.majorTickMarkField = new CT_TickMark();
     this.numFmtField = new CT_NumFmt();
     this.titleField = new CT_Title();
     this.minorGridlinesField = new CT_ChartLines();
     this.majorGridlinesField = new CT_ChartLines();
     this.axPosField = new CT_AxPos();
     this.deleteField = new CT_Boolean();
     this.scalingField = new CT_Scaling();
     this.axIdField = new CT_UnsignedInt();
 }