Esempio n. 1
0
 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);
     }
 }