hi
The PieChart is used
The purpose is to display any box with details appropriate to wedge.
When the mouse is over wedge the box with details appears, mouse out
of wedge box dissapears.

Moving mouse on wedge it works properly, but moving imidiately
(without leaving the pie) to another wedge the box is still
dissapeared.

Two functions have been used:
<![CDATA[
                  function visible_true() {
                        statistics_box.visible=true;
                  }
                 
                  function visible_false() {
                        statistics_box.visible=false;
                  }
                       
            ]]>


The functionality of this functions called in the following Pie Chart:

<mx:PieChart id="pieChartGr" height="100"
dataProvider="{internalChildren}"      showDataTips="true"
                                    dataTipFunction
= "dtFunc" mouseDown="goToChild(event)" width="277" minWidth="250"
                             
      mouseOverData="visible_true();" mouseOutData="visible_false
();" >

Any help and ideas?
Thanks

Regards,

David






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




YAHOO! GROUPS LINKS




Reply via email to