From d6c93a0b4f26932a315f6f9394c4bbf0401cb4a9 Mon Sep 17 00:00:00 2001 From: guange <8863824@gmail.com> Date: Fri, 18 Jan 2019 16:57:30 +0800 Subject: [PATCH] . --- chapter2/mysite/myapp/static/scripts/trend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter2/mysite/myapp/static/scripts/trend.js b/chapter2/mysite/myapp/static/scripts/trend.js index 71ec766..3382801 100755 --- a/chapter2/mysite/myapp/static/scripts/trend.js +++ b/chapter2/mysite/myapp/static/scripts/trend.js @@ -239,7 +239,7 @@ $(function(){ for(var key in top10_sells){ var base = top10_sells[0]; var data = top10_sells[key]; - histogramChart3_names.push(data['product_name']); + histogramChart3_names.push(data['product_name'].substring(0,10)); histogramChart3_datas.push(data['good_c']); var rate = data['good_c'] * 100 / base['good_c']; histogramChart3_rates.push(rate.toFixed(0));