}
// Move the move on the area
public void mouseMoved(MouseEvent e) {
ChartItem itemUnderPoint = myMouseSupport
.getChartItemUnderMousePoint(e.getX(), e.getY());
Task taskUnderPoint = itemUnderPoint == null ? null
: itemUnderPoint.getTask();
// System.err.println("[OldMouseMotionListenerImpl] mouseMoved:
// taskUnderPoint="+taskUnderPoint);
if (taskUnderPoint == null) {
setDefaultCursor();
} else {