对于 Flex ColumnChart,有没有办法使数据提示在列上居中
我将 Flex ColumnChart 与自定义 dataTipRenderer 结合使用。 我可以使用 dataTipRenderer 应用漂亮的皮肤,但不确定如何将数据提示移动到中心。
有没有办法让图表将数据提示集中在列上,而不是图表正常的右上角对齐?
而不是:
|tip text|
+++
+++
+++
+++
+++
+++
+++
+++
我想要:
| tip text |
+++
+++
+++
+++
+++
+++
+++
+++
任何涉及 HitData 等的想法都将受到欢迎。
I'm using a Flex ColumnChart with a custom dataTipRenderer. I'm able to apply a nice skin with the dataTipRenderer, but am not sure how to move the datatip to be centered.
Is there a way to have the chart center the data tips over the column instead of the normal top-right alignment the chart does?
Instead of:
|tip text|
+++
+++
+++
+++
+++
+++
+++
+++
I want:
| tip text |
+++
+++
+++
+++
+++
+++
+++
+++
Any ideas involving HitData, etc, would be welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你有 dataTipRenderer,你可以在主组件(canvas、hbox 或 vbox)中设置属性 x,如下所示:
x="this.x - (this.width* .5)"
If you have a dataTipRenderer you can set the property x in the main component (canvas, hbox or vbox) like this:
x="this.x - (this.width* .5)"