]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Correct default scaleShowLabels value to match js file setting 126/head
authorIder <ider@storm8.com>
Fri, 31 May 2013 02:58:31 +0000 (19:58 -0700)
committerIder <ider@storm8.com>
Fri, 31 May 2013 02:58:31 +0000 (19:58 -0700)
default scaleShowLabels value for Line and Bar is true in js file, but
it is false in document page.
Correct document page to match the value to reduce the confuse

docs/index.html

index e63c52c366b6ed6a39e708605211216f96461fd2..ef6f522c35729c624be652461509e56b164eea26 100644 (file)
@@ -99,7 +99,7 @@ var myNewChart = new Chart(ctx);</code></pre>
        scaleLineWidth : 1,
 
        //Boolean - Whether to show labels on the scale 
-       scaleShowLabels : false,
+       scaleShowLabels : true,
        
        //Interpolated JS string - can access value
        scaleLabel : "<%=value%>",
@@ -212,7 +212,7 @@ var myNewChart = new Chart(ctx);</code></pre>
        scaleLineWidth : 1,
 
        //Boolean - Whether to show labels on the scale 
-       scaleShowLabels : false,
+       scaleShowLabels : true,
        
        //Interpolated JS string - can access value
        scaleLabel : "<%=value%>",