使用拉斐尔半圆
我对使用 raphael js 库非常陌生,我正在尝试弄清楚这一切。我正在尝试创建一个基于百分比的图表,其中 100% 是一个完整的圆圈。圆形部分我已经弄清楚了,但是我该如何更改它以显示 50% 的半圆或 25% 的四分之一圆?
I'm very new to using raphael js library and I'm trying to figure it all out. I'm trying to create a chart based on percentages where 100% would be a full circle. The circle part I have figured out, but how would I go about changing it to show a half-circle for 50% or a quarter of a circle for 25%?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议查看 Raphael 主页上此示例背后的代码。修改它以满足您的需要应该很容易。
这个函数特别是你正在寻找的
,所以,50% 的切片当然是
,这与度数一起工作 - 你可能想要将它包装起来,以便你可以使用百分比。
I recommend looking at the code behind this example on the Raphael home page. It should be easy enough to modify it to suit your needs.
This function in particular is what you're looking for
so, a 50% slice would be
Of course, this is working with degrees - you may want to wrap it so that you can use percentages.
您必须使用 path() 并使用 SVG 的路径语法指定它。以下是创建闭合四分之一圆(左上象限)的示例:
请参阅此链接< /a> 有关 SVG 路径的更多信息。
You have to use path() and specify it using SVG's path syntax. Here is an example of creating a closed quarter-circle (upper left quadrant):
See this link for more on SVG Paths.