Ich muss mit chart.js Text in einen Balken in einem Diagramm schreiben
var ctx = document.getElementById("myChart"); var myChart = new Chart(ctx, { type: 'bar', data:data, options: { scales: { yAxes: [{ ticks: { beginAtZero:true } }] } }, responsive : true, showTooltips : false, showInlineValues : true, centeredInllineValues : true, tooltipCaretSize : 0, tooltipTemplate : "<%= value %>" });
Der obige Code funktioniert nicht...
Ich brauche so etwas:
如果您想为每个元素呈现居中文本,有一个更简单的方法:
似乎'getCenterPoint'在版本2.1.3中不可用(您在示例中使用的)。我用 2.5.0 尝试过,它可以工作
将此代码添加到您的选项对象中:
https://jsfiddle.net/h4p8f5xL/
更新2
用具有所需宽度和高度的容器包围画布
并将以下内容添加到您的选项对象中