diff --git a/src/core/core.controller.js b/src/core/core.controller.js index 694af7661..562978f13 100644 --- a/src/core/core.controller.js +++ b/src/core/core.controller.js @@ -121,6 +121,20 @@ this.scales[scale.id] = scale; }, this); } + + if (this.options.scale) { + // Build radial axes + var ScaleClass = Chart.scaleService.getScaleConstructor(axisOptions.type); + var scale = new ScaleClass({ + ctx: this.chart.ctx, + options: axisOptions, + data: this.data, + id: axisOptions.id, + chart: this.chart, + }); + + this.scale = scale; + } } Chart.scaleService.fitScalesForChart(this, this.chart.width, this.chart.height);