gpt4 book ai didi

javascript - Chart.js 添加自定义标题、副标题、图形

转载 作者:搜寻专家 更新时间:2023-10-31 23:27:00 28 4
gpt4 key购买 nike

我正在为一个项目使用 Chart.js ( http://www.chartjs.org/ )。

有人知道如何在实际 Canvas 上绘制新内容,例如标题或添加自定义图像,向图表添加“边距”吗?

最佳答案

是的。

enter image description here

您可以设置 ChartJs 的 onAnimationComplete 回调来在 ChartJs 完成它自己的绘图和动画时调用您的自定义绘图代码。

在该回调中,您可以获得 Canvas 上下文(== 与您最初输入 ChartJS 的相同 Canvas /上下文)并使用该上下文绘制您想要的任何新自定义内容。

这是它如何工作的一个例子:

Inserting percentage charts.js doughnut

ChartJS 的图表内容没有原生的“填充”。获得一些填充的一种方法是将图表绘制到较小的内存 Canvas ,然后将该内存 Canvas 绘制到您的可见 Canvas ,并带有偏移量以允许您需要的填充。

这是一个例子:

var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
var cw=canvas.width;
var ch=canvas.height;

var pieData = [
{
value: 200,
color:"#F7464A",
highlight: "#FF5A5E",
label: "Red"
},
{
value: 50,
color: "#46BFBD",
highlight: "#5AD3D1",
label: "Green"
},
{
value: 100,
color: "#FDB45C",
highlight: "#FFC870",
label: "Yellow"
},
{
value: 40,
color: "#949FB1",
highlight: "#A8B3C5",
label: "Grey"
},
{
value: 120,
color: "#4D5360",
highlight: "#616774",
label: "Dark Grey"
}

];

// create an in-memory canvas (c)
var c = document.createElement("canvas");

// size it to your desired size (without padding)
c.width=100;
c.height=100;

// make it hidden
c.style.visibility='hidden';
document.body.appendChild(c);

// create the chart on the in-memory canvas
var cctx = c.getContext("2d");
window.myPie = new Chart(cctx).Pie(pieData,{
responsive:false,
animation:false,


// when the chart is fully drawn,
// draw the in-memory chart to the visible chart
// allowing for your desired padding
// (this example pads 100 width and 50 height
onAnimationComplete:function(){
ctx.drawImage(c,100,50);
ctx.fillText('Space to add something here with 50x100 padding',5,20);
ctx.fillText('Added Padding',5,90);
ctx.beginPath();
ctx.moveTo(0,100);
ctx.lineTo(100,100);
ctx.stroke();
}
});
body{ background-color: ivory; }
canvas{border:1px solid red;}
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script>
<canvas id="canvas" width=300 height=300></canvas>

关于javascript - Chart.js 添加自定义标题、副标题、图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29040023/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com