//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,
//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,
```javascript
myBarChart.removeData();
// The chart will now animate and remove the first bar
-```
\ No newline at end of file
+```