예제 #1
0
파일: ChartData.cs 프로젝트: rj128x/PIMVC
 public ChartData(Report report)
 {
     series = new List<ChartDataSerie>();
     foreach (KeyValuePair<string, SortedList<DateTime, Tag>> de in report.tagsByID) {
         report.addChartData(this, de.Key, de.Key, false,1);
     }
 }