]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix docs typo 3062/head
authorEvert Timberg <evert.timberg+github@gmail.com>
Sat, 30 Jul 2016 13:02:40 +0000 (09:02 -0400)
committerEvert Timberg <evert.timberg+github@gmail.com>
Sat, 30 Jul 2016 13:02:40 +0000 (09:02 -0400)
docs/01-Chart-Configuration.md
docs/03-Line-Chart.md

index c67e343371362a463f853bd994ca63977973dc1a..ea26c7e178b9fe029458283e9c6d5d7013bb3ee4 100644 (file)
@@ -371,7 +371,7 @@ borderDashOffset | Number | 0.0 | Default line dash offset. See [MDN](https://de
 borderJoinStyle | String | 'miter' | Default line join style. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineJoin)
 capBezierPoints | Boolean | true | If true, bezier control points are kept inside the chart. If false, no restriction is enforced.
 fill | Boolean | true | If true, the line is filled.
-stepped | Boolean | false | If true, the line is shown as a steeped line and 'tension' will be ignored
+stepped | Boolean | false | If true, the line is shown as a stepped line and 'tension' will be ignored
 
 #### Point Configuration
 
index 2afed405aa501f46186cbf06d84904b9d9e2ce52..13e85a8476fbe31453d07fbc2e1e75a0138d23ad 100644 (file)
@@ -59,7 +59,7 @@ pointHoverBorderWidth | `Number or Array<Number>` | Border width of point when h
 pointStyle | `String, Array<String>, Image, Array<Image>` | The style of point. Options are 'circle', 'triangle', 'rect', 'rectRot', 'cross', 'crossRot', 'star', 'line', and 'dash'. If the option is an image, that image is drawn on the canvas using `drawImage`. 
 showLine | `Boolean` | If false, the line is not drawn for this dataset
 spanGaps | `Boolean` | If true, lines will be drawn between points with no or null data
-steppedLine | `Boolean` | If true, the line is shown as a steeped line and 'lineTension' will be ignored
+steppedLine | `Boolean` | If true, the line is shown as a stepped line and 'lineTension' will be ignored
 
 An example data object using these attributes is shown below.
 ```javascript