Esempio n. 1
0
 public ReportTableChart(string filePath, string xml)
 {
     this.filePath  = filePath;
     this.fileInfo  = new FileInfo(filePath);
     this.xml       = xml;
     tableXmlParser = new TableXmlParser(xml);
     chartXmlParser = new ChartXmlParser(xml);
 }
 public ReportTable(string filePath, string xml)
 {
     this.filePath  = filePath;
     this.fileInfo  = new FileInfo(filePath);
     this.xml       = xml;
     tableXmlParser = new TableXmlParser(xml);
     // this.colCount = tableXmlParser.GetColCount();
 }