Skip to content

Commit

Permalink
fix x-axis ticks to reflect hourly and 15-minute intervals
Browse files Browse the repository at this point in the history
  • Loading branch information
s-egge committed Mar 5, 2024
1 parent ddfe96d commit 9b1713b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/charts/linechart.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ export default {
fontFamily: 'Open Sans'
},
time: {
unit: 'day',
unit: this.$parent.$store.getters[this.$parent.path + '/intervalUnit'],
unitStepSize: 15,
displayFormats: {
day: 'M/DD',
hour: 'dd h:mm a',
minute: 'h:mm a'
minute: 'dd h:mm a'
}
}
}
Expand Down

0 comments on commit 9b1713b

Please sign in to comment.