예제 #1
0
파일: Chart.cs 프로젝트: runningwater/npoi
 public static CT_MarkerSize Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_MarkerSize ctObj = new CT_MarkerSize();
     ctObj.val = XmlHelper.ReadByte(node.Attributes["val"]);
     return ctObj;
 }
예제 #2
0
파일: Chart.cs 프로젝트: xiepeixing/npoi
 public CT_Marker()
 {
     this.extLstField = new List<CT_Extension>();
     this.sizeField = new CT_MarkerSize();
     this.symbolField = new CT_MarkerStyle();
 }