diff --git a/components/metrics/BarChart.js b/components/metrics/BarChart.js index 856e81e8..391f869b 100644 --- a/components/metrics/BarChart.js +++ b/components/metrics/BarChart.js @@ -54,9 +54,12 @@ export default function BarChart({ } return index % 5 === 0 ? dateFormat(d, 'M/d', locale) : ''; } - if (w <= 500) { + if (w <= 750) { return index % 2 === 0 ? dateFormat(d, 'MMM d', locale) : ''; } + if (w <= 850) { + return dateFormat(d, 'MMM d', locale); + } return dateFormat(d, 'EEE M/d', locale); case 'month': if (w <= 660) {