如何添加发光效果 Flex 3 图表?
我在 Flex 3 中创建了一个包含柱形图的自定义组件。我还添加了代码,允许用户在存在基础详细数据时深入查看列。如果没有数据,单击该列没有任何作用。
当向下钻取功能可以作为向用户发出的视觉信号时,我想让鼠标下方的列发光。
当 IF 语句结果为 true 时,如何使该列发光?
I created a custom component in Flex 3 that contains a column chart. I also added code that will allow the user to drill down on a column when there is underlying detail data. If there is no data, clicking on the column has no effect.
I want to make the column under the mouse glow when the drill down functionality is possible as a visual signal to the user.
How do I make the column glow when my IF statement results in true?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用绑定。
filters="{(isPossible) ? [glow] : []}"
——只要 isPossible 发生变化,它就应该更新。You can use binding.
filters="{(isPossible) ? [glow] : []}"
-- that should update whenever isPossible changes.