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 3ab556d commit db34e67Copy full SHA for db34e67
angular-chart.js
@@ -281,7 +281,7 @@
281
data: item
282
});
283
if (yaxis) {
284
- dataset.yAxisID = 'y-axis-' + (i + 1);
+ dataset.yAxisID = yaxis[i];
285
}
286
return dataset;
287
})
examples/app.js
@@ -36,7 +36,7 @@
36
console.log('No point');
37
38
};
39
- $scope.multiAxis = true;
+ $scope.multiAxis = ['y-axis-1', 'y-axis-2'];
40
41
$scope.options = {
42
scales: {
0 commit comments