vote up 0 vote down star

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?

flag

1 Answer

vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.