diff --git a/_docs-v6/list-view/listDayFormat.md b/_docs-v6/list-view/listDayFormat.md
index 3b3af21f..5d617319 100644
--- a/_docs-v6/list-view/listDayFormat.md
+++ b/_docs-v6/list-view/listDayFormat.md
@@ -5,7 +5,24 @@ title: listDayFormat
A [Date Formatter](date-formatting) that affects the text on the left side of the day headings in list view.
-String, `false`
+[Date Formatter](date-formatting), `false`, *defaults*:
+
+```js
+// like 'January 1, 2016', for 'list' view
+{ month: 'long', day: 'numeric', year: 'numeric' }
+
+// like 'Monday', for 'listDay' view
+{ weekday: 'long' }
+
+// like 'Monday', for 'listWeek' view
+{ weekday: 'long' }
+
+// no text, for 'listMonth' view
+false
+
+// no text, for 'listYear' view
+false
+```
diff --git a/_docs-v6/list-view/listDaySideFormat.md b/_docs-v6/list-view/listDaySideFormat.md
index 2e36900f..f1d6395c 100644
--- a/_docs-v6/list-view/listDaySideFormat.md
+++ b/_docs-v6/list-view/listDaySideFormat.md
@@ -5,7 +5,24 @@ title: listDaySideFormat
A [Date Formatter](date-formatting) that affects the text on the right side of the day headings in list view.
-String, `false`
+[Date Formatter](date-formatting), `false`, *defaults*:
+
+```js
+// no text, for 'list' view
+false
+
+// no text, for 'listDay' view
+false
+
+// like 'January 1, 2016', for 'listWeek' view
+{ month: 'long', day: 'numeric', year: 'numeric' }
+
+// like 'Monday', for 'listMonth' view
+{ weekday: 'long' }
+
+// like 'Monday', for 'listYear' view
+{ weekday: 'long' }
+```