From c2e37ce8e23a1fa8a5c0e790cb1116c2eab341b4 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Mon, 27 Jun 2016 22:25:38 -0400 Subject: [PATCH] Polar area graph scale should start at 0 by default --- src/controllers/controller.polarArea.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/controllers/controller.polarArea.js b/src/controllers/controller.polarArea.js index 8b63eaf4b..086ef5972 100644 --- a/src/controllers/controller.polarArea.js +++ b/src/controllers/controller.polarArea.js @@ -8,7 +8,10 @@ module.exports = function(Chart) { scale: { type: "radialLinear", - lineArc: true // so that lines are circular + lineArc: true, // so that lines are circular + ticks: { + beginAtZero: true + } }, //Boolean - Whether to animate the rotation of the chart -- 2.47.2