From 3424e019b51d8ae36ed68446442c0cef17bf4952 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 6 Aug 2015 16:39:53 +0200 Subject: [PATCH] Removed animation, again [skip ci] --- public/js/charts.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/js/charts.js b/public/js/charts.js index 994e1dd0c1..e3c1429ecf 100644 --- a/public/js/charts.js +++ b/public/js/charts.js @@ -42,6 +42,7 @@ var defaultAreaOptions = { datasetStrokeWidth: 1, pointHitDetectionRadius: 5, datasetFill: true, + animation: false, scaleFontSize: 10, responsive: false, scaleLabel: " <%= '" + currencySymbol + " ' + Number(value).toFixed(0).replace('.', ',') %>", @@ -56,7 +57,7 @@ var defaultPieOptions = { datasetStrokeWidth: 1, pointHitDetectionRadius: 5, datasetFill: false, - animation: false, + animation: false, scaleFontSize: 10, responsive: false, tooltipFillColor: "rgba(0,0,0,0.5)", @@ -70,6 +71,7 @@ var defaultLineOptions = { pointDotRadius: 2, datasetStrokeWidth: 1, pointHitDetectionRadius: 5, + animation: false, datasetFill: false, scaleFontSize: 10, responsive: false, @@ -87,6 +89,7 @@ var defaultColumnOptions = { datasetFill: false, scaleFontSize: 10, responsive: false, + animation: false, scaleLabel: "<%= '" + currencySymbol + " ' + Number(value).toFixed(0).replace('.', ',') %>", tooltipFillColor: "rgba(0,0,0,0.5)", tooltipTemplate: "<%if (label){%><%=label%>: <%}%>" + currencySymbol + " <%= value %>", @@ -99,6 +102,7 @@ var defaultStackedColumnOptions = { barStrokeWidth: 1, pointHitDetectionRadius: 5, datasetFill: false, + animation: false, scaleFontSize: 10, responsive: false, scaleLabel: "<%= '" + currencySymbol + " ' + Number(value).toFixed(0).replace('.', ',') %>",