如何在 html5 画布上绘制圆形扇形?
我试图在画布元素上制作一种饼图形状,但是我似乎找不到任何可以单独完成此操作的函数。我似乎只能画完整的圆和线段。有没有简单的方法可以做到这一点?
(另请参阅:有关圈子术语的维基百科)
I'm trying to make a sort of pie-chart shape on a canvas element, however I can't seem to find any function that does this by itself. I only seem to be able to draw full circles and segments. Is there an easy way to do this?
(See also: Wikipedia on circle terminology)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下应该有效:
以
cx
、cy
为圆弧中心。The following should work:
with
cx
,cy
being the center of the arc.