如何为 Flex 4 饼图的每个切片应用斜角过滤器?
仅成功地将其应用于整个饼图。
Only succeeded with applying it around the whole pie chart.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
仅成功地将其应用于整个饼图。
Only succeeded with applying it around the whole pie chart.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我最终通过将过滤器应用到每个切片并稍微增加楔形之间的距离来实现这一点。
series.explodeRadius=0.01;
series.filters = [bevel];
I achieved this finally by applying the filter to each slice and slightly increasing the distanc between the wedges.
series.explodeRadius=0.01;
series.filters = [bevel];
将图表的一部分转换为符号并单独应用过滤器?
Convert the segment of chart into a symbol and apply the filter to that on it's own?