We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc4e9a2 commit 38fb928Copy full SHA for 38fb928
angular-chart.js
@@ -109,7 +109,8 @@
109
chartColors: '=?',
110
chartClick: '=?',
111
chartHover: '=?',
112
- chartDatasetOverride: '=?'
+ chartDatasetOverride: '=?',
113
+ chartPlugins: '=?'
114
},
115
link: function (scope, elem/*, attrs */) {
116
if (useExcanvas) window.G_vmlCanvasManager.initElement(elem[0]);
@@ -181,7 +182,8 @@
181
182
scope.chart = new ChartJs.Chart(ctx, {
183
type: type,
184
data: data,
- options: options
185
+ options: options,
186
+ plugins: scope.chartPlugins
187
});
188
scope.$emit('chart-create', scope.chart);
189
bindEvents(cvs, scope);
0 commit comments