Correct default scaleShowLabels value to match js file setting

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
This commit is contained in:
Ider 2013-05-30 19:58:31 -07:00
parent 2e08396255
commit 0638674145

View File

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