评论

伪3d饼图easyEcharts专为移动端小程序定制

easyEcharts图表是专门移动端app,小程序定制。有折现,饼图(伪3d)圆环....

示例网站:http://jstopo.top
drawPieText(ctx, w, h){
	if( Array.isArray( this.pieData ) ){
		this.pieData.forEach((obj,indx,ar)=>{
		ctx.beginPath();ctx.setTextAlign("left");
		ctx.setFillStyle(this.deepShadowColors[indx]);
		const metrics = ctx.measureText("● "+obj.text+" "+(obj.part*100).toFixed(1)/1+"%").width,
		len = (h - ar.length*23)/2;
		ctx.fillText("● "+obj.text+" "+(obj.part*100).toFixed(1)/1+"%", w-20-metrics, 10+indx*23+len);
		})
	}
},

最后一次编辑于  2023-06-27  
点赞 0
收藏
评论
登录 后发表内容