]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Added documentation for maxRotation of labels 1365/head
authorPratyush Mittal <pratyushmittal@gmail.com>
Sat, 8 Aug 2015 08:37:24 +0000 (14:07 +0530)
committerPratyush Mittal <pratyushmittal@gmail.com>
Sat, 8 Aug 2015 08:37:24 +0000 (14:07 +0530)
docs/00-Getting-Started.md

index a678a46d660b8dbd7d90edaf90b1278ce26db59b..9b372c825ad26af3191ddf944d84e1598522d8d0 100644 (file)
@@ -371,6 +371,9 @@ the following options.
         // Number - controls the padding between the label and the axis
         padding: 10,
 
+        // Number: maximum auto-rotation allowed for labels.
+        maxRotation: 90,
+
         // String - template string for labels
         template: "<%=value%>",
 
@@ -393,14 +396,15 @@ the following options.
 
 ```
 
-The `userCallback` method may be useful when there are a lot of labels. The following callback would filter out every second label on a category scale
+The `userCallback` method may be useful when there are a lot of labels. The following callback would show every fifth label on a category scale
 ```javascript
 {
     scales: {
         xAxes: [{
             labels: {
+                maxRotation: 0,    // set maxRotation to 0 to turn off auto-rotation
                 userCallback: function(labelString, index) {
-                    return (index % 2 === 0) ? labelString : '';
+                    return (index % 5 === 0) ? labelString : '';
                 }
             }
         }]
@@ -490,4 +494,4 @@ The `userCallback` function allows the user fine grained control over how labels
         }
     }
 }
-```
\ No newline at end of file
+```