Hi,
I checked out the new drag and drop support for charts - it is cool.
I need to be able to drag a row from a datagrid and drop it onto a
chart.
Is that supported?
I tried the usual mechanism - specifying dragEnabled="true" on the
datagrid, and on the chart, specifying dragEnter="doDragEnter
(event);"
dragDrop="doDragDrop(event);"
where
private function doDragEnter(event:DragEvent):void {
DragManager.acceptDragDrop(UIComponent
(event.target));
}
private function doDragDrop(event:DragEvent):void {
if(event.dragSource.hasFormat("items"))
{
...
The doDragEnter() function gets invoked, but doDragDrop function is
not getting invoked...