I use angular-chart.js and chart.js 2.0.2 - I have bar char. It is my code for chart in index.slim
canvas#bar.chart.chart-bar chart-data="data" chart-labels="labels" chart-options="options"
How Can I set beginAtZero options (other options works (f.e display: true )) in my controller I tried:
$scope.options = {
scale: {
ticks: {
beginAtZero: true
}
}
};
What I did wrong?