]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Update docs for toggle Horizontal/Vertical Lines feature 611/head
authorFrancisco Neves <fntneves@gmail.com>
Mon, 8 Sep 2014 16:49:19 +0000 (17:49 +0100)
committerFrancisco Neves <fntneves@gmail.com>
Mon, 8 Sep 2014 16:49:19 +0000 (17:49 +0100)
docs/01-Line-Chart.md
docs/02-Bar-Chart.md

index 3dc60633744efc6a2156e860eaf8589a8e82f43c..a4b6394ab5226e6da7dfff7924e3e65e89478fc6 100644 (file)
@@ -66,6 +66,12 @@ These are the customisation options specific to Line charts. These options are m
        //Number - Width of the grid lines
        scaleGridLineWidth : 1,
 
+       //Boolean - Whether to show horizontal lines (except X axis)
+       scaleShowHorizontalLines: true,
+
+       //Boolean - Whether to show vertical lines (except Y axis)
+       scaleShowVerticalLines: true,
+
        //Boolean - Whether the line is curved between points
        bezierCurve : true,
 
index b4253e7463cd9c5cc49e859d7036698382b5e5f7..80b1999e52f3694817250df86fac5a95c9cca757 100644 (file)
@@ -65,6 +65,12 @@ These are the customisation options specific to Bar charts. These options are me
        //Number - Width of the grid lines
        scaleGridLineWidth : 1,
 
+       //Boolean - Whether to show horizontal lines (except X axis)
+       scaleShowHorizontalLines: true,
+
+       //Boolean - Whether to show vertical lines (except Y axis)
+       scaleShowVerticalLines: true,
+
        //Boolean - If there is a stroke on each bar
        barShowStroke : true,
 
@@ -140,4 +146,4 @@ Calling `removeData()` on your Chart instance will remove the first value for al
 ```javascript
 myBarChart.removeData();
 // The chart will now animate and remove the first bar
-```
\ No newline at end of file
+```