public static CT_SecondPieSize Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_SecondPieSize ctObj = new CT_SecondPieSize(); if (node.Attributes["val"] != null) ctObj.val = XmlHelper.ReadUShort(node.Attributes["val"]); return ctObj; }
public CT_OfPieChart() { this.extLstField = new List<CT_Extension>(); this.serLinesField = new List<CT_ChartLines>(); this.secondPieSizeField = new CT_SecondPieSize(); this.custSplitField = new List<CT_UnsignedInt>(); this.splitPosField = new CT_Double(); this.splitTypeField = new CT_SplitType(); this.gapWidthField = new CT_GapAmount(); this.dLblsField = new CT_DLbls(); this.serField = new List<CT_PieSer>(); this.varyColorsField = new CT_Boolean(); this.ofPieTypeField = new CT_OfPieType(); }