如何添加发光效果 Flex 3 图表?

发布于 2024-08-02 09:40:23 字数 160 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愚人国度 2024-08-09 09:40:23

您可以使用绑定。 filters="{(isPossible) ? [glow] : []}" ——只要 isPossible 发生变化,它就应该更新。

You can use binding. filters="{(isPossible) ? [glow] : []}" -- that should update whenever isPossible changes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文