Re: [flexcoders] Re: Different DataTips for multiple series in one chart.

2007-12-27 Thread Guido
I was afraid I'd have to go that way... I wanted to have a more polymorphic solution to this, but well, it seems that Flex and AS still have some maturing to do in that direction. Thanks jer_ela! :) On Dec 26, 2007 12:30 PM, jer_ela [EMAIL PROTECTED] wrote: dataTipFunction is a property of

[flexcoders] Re: Different DataTips for multiple series in one chart.

2007-12-26 Thread jer_ela
dataTipFunction is a property of the chart, not the series, so you will have to have a single function that looks at the hitData to determine which series the mouse is over. The hitData.element property will give you access to the properties of the series that the mouse is over. If you give the

[flexcoders] Re: Different DataTips for multiple series in one chart.

2007-12-24 Thread Guido
any clues on this one guys? On Dec 13, 2007 3:20 PM, Guido [EMAIL PROTECTED] wrote: Oh, I forgot: I'm using Flex 2.0.1 On Dec 13, 2007 3:20 PM, Guido [EMAIL PROTECTED] wrote: Hi, people. I have a LineChart with multiple series in it, and I'd like to have a custom data tip function

[flexcoders] Re: Different DataTips for multiple series in one chart.

2007-12-13 Thread Guido
Oh, I forgot: I'm using Flex 2.0.1 On Dec 13, 2007 3:20 PM, Guido [EMAIL PROTECTED] wrote: Hi, people. I have a LineChart with multiple series in it, and I'd like to have a custom data tip function for each series, and not one for the whole chart. I've thought of a couple of ways of doing