如何在弹性饼图的特定楔形上绘制轮廓?
我想在鼠标下方的饼形楔形上使用与其他楔形上使用的轮廓不同的彩色描边(轮廓)。
mouseover 事件引用的 PieSeriesItem 没有描边参数,看起来它是对整个饼图的轮廓颜色进行全有或全无处理。
有没有办法指定特定楔子上的行程参数?
I want to have a different coloured stroke (outline) used on the pie wedge under the mouse from the outline used on the other wedges.
The PieSeriesItem referenced by the mouseover event doesn't have a stroke parameter, and it looks like it is an all or nothing deal with the outline colour on the whole pie.
Is there any way of specifying the stroke parameter on a specific wedge?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来这是通过在 PieSeries 上指定 itemRenderer 来完成的。默认值是 WedgeItemRenderer,因此子类化将允许覆盖线定义。
It looks like this is done by specifying an itemRenderer on the PieSeries. The default is the WedgeItemRenderer, so subclassing will allow overriding the line definition.