Я не знаю, как добавить индексные метки indexLabel:"{y}"
Контроллер: * +1004 *
$scope.chart_bar = {
options: {
scales: {
xAxes: [{
stacked: true,
}],
yAxes: [{
stacked: true,
}]
}
},
data: [[23,37,56,65]],
labels: ['a','z','c','j']
HTML:
<canvas class="chart chart-bar"
chart-data="chart_bar.data"
chart-series="chart_bar.series"
chart-labels="chart_bar.labels"
chart-options="chart_bar.options">
</canvas>
Я бы хотел отобразить значение оси Y.
как мне это сделать?