Update docs for toggle Horizontal/Vertical Lines feature

This commit is contained in:
Francisco Neves 2014-09-08 17:49:19 +01:00
parent a3daf1ca24
commit a406fdae58
2 changed files with 13 additions and 1 deletions

View 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,

View 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
```
```