]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Update docs 1720/head
authoretimberg <evert.timberg@gmail.com>
Tue, 1 Dec 2015 01:47:49 +0000 (20:47 -0500)
committeretimberg <evert.timberg@gmail.com>
Tue, 1 Dec 2015 01:47:49 +0000 (20:47 -0500)
docs/01-Scales.md

index a1ecc7c245d4c7e1a454b8ee446ee6d6c23bf624..be4872dd0e334d82727d4925932626b7322371d1 100644 (file)
@@ -150,8 +150,19 @@ The time scale extends the core scale class with the following tick template:
                unit: false,
                // string - By default, no rounding is applied.  To round, set to a supported time unit eg. 'week', 'month', 'year', etc.
                round: false,
-               // string - By default, is set to the detected (or manually overridden) time unit's `display` property (see supported time measurements).  To override, use a pattern string from http://momentjs.com/docs/#/displaying/format/
-               displayFormat: false
+               // Moment js for each of the units. Replaces `displayFormat`
+               // To override, use a pattern string from http://momentjs.com/docs/#/displaying/format/
+               displayFormats: {
+                               'millisecond': 'SSS [ms]',
+                               'second': 'h:mm:ss a', // 11:20:01 AM
+                               'minute': 'h:mm:ss a', // 11:20:01 AM
+                               'hour': 'MMM D, hA', // Sept 4, 5PM
+                               'day': 'll', // Sep 4 2015
+                               'week': 'll', // Week 46, or maybe "[W]WW - YYYY" ?
+                               'month': 'MMM YYYY', // Sept 2015
+                               'quarter': '[Q]Q - YYYY', // Q3
+                               'year': 'YYYY', // 2015
+                       }, 
        },
 }
 ```