From 0638674145526b5b385212a8486be79947ee5c1f Mon Sep 17 00:00:00 2001 From: Ider Date: Thu, 30 May 2013 19:58:31 -0700 Subject: [PATCH] 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 --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index e63c52c36..ef6f522c3 100644 --- a/docs/index.html +++ b/docs/index.html @@ -99,7 +99,7 @@ var myNewChart = new Chart(ctx); 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); scaleLineWidth : 1, //Boolean - Whether to show labels on the scale - scaleShowLabels : false, + scaleShowLabels : true, //Interpolated JS string - can access value scaleLabel : "<%=value%>",