diff --git a/src/packages/editor-stats/src/editor-stats-view.coffee b/src/packages/editor-stats/src/editor-stats-view.coffee index 61e671ec8..ae008decd 100644 --- a/src/packages/editor-stats/src/editor-stats-view.coffee +++ b/src/packages/editor-stats/src/editor-stats-view.coffee @@ -20,6 +20,9 @@ class EditorStatsView extends ScrollView xaxis = d3.svg.axis().scale(x) .orient('top') + .tickFormat (d) -> + d = new Date(startDate.getTime() + (d * 6e4)) + "#{d.getHours()}:#{d.getMinutes()}" @activate: (rootView, state) -> @instance = new EditorStatsView(rootView, state?.eventLog)