diff --git a/examples/days.html b/examples/days.html
index 2752c4a..a935769 100644
--- a/examples/days.html
+++ b/examples/days.html
@@ -31,7 +31,10 @@ Morris.Line({
xkey: 'period',
ykeys: ['licensed', 'sorned'],
labels: ['Licensed', 'SORN'],
- xLabelsFormat: function(d) { return (d.getMonth()+1)+'/'+d.getDate()+'/'+d.getFullYear(); }
+ // custom label formatting with `xLabelFormat`
+ xLabelFormat: function(d) { return (d.getMonth()+1)+'/'+d.getDate()+'/'+d.getFullYear(); },
+ // setting `xLabels` is recommended when using xLabelFormat
+ xLabels: 'day'
});