Merge pull request #2857 from chartjs/fix/2809

Polar area graph scale should start at 0 by default
This commit is contained in:
Evert Timberg
2016-06-28 21:59:39 -04:00
committed by GitHub

View File

@@ -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