我正在使用chartjs,并试图将数据对象中数据数组的值添加到图表中。我的意思是,如果数据数组看起来像[1,4,5]那么在相关部分的饼图上会显示该值。所以在这种情况下,最大的'馅饼'应该是数字6.目前它只显示你将鼠标悬停在馅饼上时的数字。
我希望这是有道理的。请参阅下面的代码。
var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
type: 'pie',
data: {
labels: ['a', 'b', 'c'],
datasets: [{
label: '# of Followers',
data: [1,4,6],
backgroundColor: [
'rgba(255, 99, 132, 0.9)',
'rgba(54, 162, 235, 0.9)',
'rgba(255, 206, 86, 0.9)',
'rgba(75, 192, 192, 0.9)',
'rgba(153, 102, 255, 0.9)',
'rgba(255, 159, 64, 0.9)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 5
}]
},
options: {
responsive: false
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.bundle.min.js"></script>
<canvas id="myChart" width="400" height="400"></canvas>
答案 0 :(得分:0)
使用此:
$scope.options = {
tooltipEvents: [],
showTooltips: true,
tooltipCaretSize: 0,
onAnimationComplete: function () {
this.showTooltip(this.segments, true);
},
}
然后将其正确引用到HTML元素.. !!!