在flex折线图上画点
我在折线图中有一个线系列和一个从 0 到 200 的滑块。当我现在移动滑块时,我希望图表上出现一个点,因此当我将滑块移动到 150 时,应该有一个点图表的 x 坐标为 150。 有人有想法吗? 我没有发现任何东西。
预先感
谢塞巴斯蒂安
I have a line series in a linechart and a slider that goes from 0 to 200. When I now move the slider, I want to have a dot appearing at the chart so when I move the slider to 150, there should be a dot where the x-coordinate of the chart is 150.
Has anybody an idea? I did not found anything.
Thanks in advance
Sebastian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须扩展折线图类并对其进行编程以自行处理您的点。 没有内置功能可以执行此操作。 这可能会很困难,您可能想使用精灵和图形创建自己的折线图组件来绘制点、线等......如果有什么的话,这可能是一个有趣的项目。
You would have to extend the linechart class and program it to handle your dot on its own. There is no built in functionality to do this. It would probably be difficult, you may want to create your own linechart component using sprites and graphics to draw the dots, lines, etc.... if anything it may be a fun project to work on.
看一下:在图表上绘图
Take a look at: Drawing on charts