there is a question:
public var panelProcess:VBox;
panelProcess = new VBox();
panelProcess.addChild(sf);
panelProcess.setStyle("horizontalAlign","center");
panelProcess.setStyle("verticalAlign","center");
panelProcess.setStyle("backgroundcolor",0xe9e9e9);
panelProcess.buttonMode = true;
panelProcess.useHandCursor = true;
panelProcess.toolTip = "Click to cancel request";
PopUpManager.addPopUp(panelProcess, apc, true); //apc is DisplayObject
PopUpManager.centerPopUp(panelProcess);
i create a PopUpManager on top of the chart when click ChartItem,but i find that the chart's Datatip is topper than the PopUpManager . when mouseover events on the ChartItem,the Datatip display, then the PopUpManager is created,but the datatip do not disappear,it on top of the PopUpManager ,how can i do?Help!