Example #1
0
 def as_json(self):
     # Set the end date of the chart to be 3 weeks out
     max_date = self.cur_day + timedelta(21)
     gantt = Gantt(self.cur_day, self.data, max_date)
     return gantt.as_json()
 def as_json(self):
     max_date = self.cur_day + timedelta(21)
     gantt = Gantt(self.cur_day, self.data, max_date)
     return gantt.as_json()
 def as_json(self):
     max_date = self.cur_day + timedelta(21)
     gantt = Gantt(self.cur_day, self.data, max_date)
     return gantt.as_json()
Example #4
0
 def as_json(self):
     # Set the end date of the chart to be 3 weeks out
     max_date = self.cur_day + timedelta(21)
     gantt = Gantt(self.cur_day, self.data, max_date)
     return gantt.as_json()