We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ecf563 commit a29e95eCopy full SHA for a29e95e
highcharts_gantt/options/series/data/gantt.py
@@ -345,11 +345,11 @@ def _to_untrimmed_dict(self, in_cls = None) -> dict:
345
}
346
347
if self.end is not None and hasattr(self.end, 'timestamp'):
348
- untrimmed['end'] = self.end.timestamp()
+ untrimmed['end'] = self.end.timestamp() * 1000
349
else:
350
untrimmed['end'] = self.end
351
if self.start is not None and hasattr(self.start, 'timestamp'):
352
- untrimmed['start'] = self.start.timestamp()
+ untrimmed['start'] = self.start.timestamp() * 1000
353
354
untrimmed['start'] = self.start
355
0 commit comments