如何用html5 canvas 做饼图

如何用html5 canvas 做饼图

html5 canvas 做饼图基本思路:主要是利用HTML5 Canvas实现饼图绘制,绘制弧度的API主要是使用context.arc与lineto两个API。实现的功能有:1. 支持标签Legend显示或者隐藏2. 首次载入动画效果3
html-css150