我在doughnut chart中使用了Angular Chart。我想在甜甜圈的中心放置一些文字。我已经阅读了this question's个答案,但它们都不适合我,因为我有工具提示,出于某种原因,当您将鼠标悬停在图表上时,文字会消失。此外,我需要提供来自" outside" - 自定义文字,例如标题。
所以,我的想法就是:
var options = {
innerTitle = "This should be placed in the center of the doughnut"
}
有什么想法吗?
修改 我通过更改几行JS Bin添加了this answer。
答案 0 :(得分:4)
我会捅这个。这种方法只是将标签放在画布顶部。唯一的缺点是你必须设置#canvas-holder
和canvas
的高度和宽度。我创建了一个用来演示:http://plnkr.co/edit/kT63Ur5ebNm1A6bQWSlO
<!-- css -->
#canvas-holder {
height: 100px;
width: 100px;
position: relative;
}
.chart-title {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
}
<!-- canvas -->
<div id="canvas-holder">
<label class="chart-title">My Chart Title</label>
<canvas id="chart-area" height="100" width="100" />
</div>
答案 1 :(得分:4)
我也是这样做的。这种方法基于@RYUUSEiiSTAR的方法并创建了您的链接。仍然需要进行正确的计算以使文本居中。
我创建了一个用于演示的插件:https://jsfiddle.net/onoc2wmx/(新链接)。
更新
经过几个小时的黑客攻击,我更新了代码,以便您可以修改字体大小,现在它是响应式的。现在看起来像这样:
var options = {
showTooltips : true,
animation: true,
percentageInnerCutout : 70,
onAnimationComplete: innerTextFunction
};
var chartCtx = $("#canvas").get(0).getContext("2d");
var textCtx = $("#text").get(0).getContext("2d");
var chart = new Chart(chartCtx).Doughnut(doughnutData, options);
function innerTextFunction() {
var canvasWidthvar = $('#canvas').width();
var canvasHeight = $('#canvas').height();
var constant = 114;
var fontsize = (canvasHeight/constant).toFixed(2);
textCtx.font = fontsize + "em Verdana";
textCtx.textBaseline="middle";
var total = 0;
$.each(doughnutData,function() {
total += parseInt(this.value,10);
});
var tpercentage = ((doughnutData[0].value/total)*100).toFixed(2)+"%";
var textWidth = textCtx.measureText(tpercentage).width;
var txtPosx = Math.round((canvasWidthvar - textWidth)/2);
textCtx.fillText(tpercentage, txtPosx, canvasHeight/4);
}
<div style="position: relative;">
<canvas id="text" style="z-index: 1; position: absolute;
left: 0px; top: 0px; width: 300px; height: 300px;"></canvas>
<canvas id="canvas" style="z-index: 2; position: absolute;
left: 0px; top: 0px; width: 300px; height: 300px;"></canvas>
</div>
答案 2 :(得分:1)
只需调整%
和bottom
css
font-size
即可
<div class="row charDonut">
<div class="chartTitle">
{{vm.totalTask}}<br>
{{vm.chartTitle}}
</div>
<canvas id="doughnut" class="chart chart-doughnut">
</canvas>
</div>
.row.charDonut{
position: relative;
}
.chartTitle{
position: absolute;
left: 0;
right: 0;
bottom: 36%; <<----
text-align: center;
font-size: 2em; <<----
}