]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Add missing comma 1817/head
authorPrashanth Chandra <coolshanth94@gmail.com>
Tue, 22 Dec 2015 09:50:11 +0000 (17:50 +0800)
committerPrashanth Chandra <coolshanth94@gmail.com>
Tue, 22 Dec 2015 09:50:11 +0000 (17:50 +0800)
docs/02-Line-Chart.md

index 365b8092f5378f2d231020b047ef0c43fa4358e9..7f92c0dd6c08cc69e3eb4ae87bfc6edfcfb5049b 100644 (file)
@@ -81,7 +81,7 @@ var data = {
                        pointHoverBorderWidth: 2,
 
                        // Tension - bezier curve tension of the line. Set to 0 to draw straight Wlines connecting points
-                       tension: 0.1
+                       tension: 0.1,
 
                        // The actual data
                        data: [65, 59, 80, 81, 56, 55, 40],
@@ -151,4 +151,4 @@ new Chart(ctx, {
 // and the Line chart defaults, but this particular instance will have the x axis not displaying.
 ```
 
-We can also change these defaults values for each Line type that is created, this object is available at `Chart.defaults.line`.
\ No newline at end of file
+We can also change these defaults values for each Line type that is created, this object is available at `Chart.defaults.line`.