I am currently trying to move the cursor to a point (org.openqa.selenium.Point) that has been set by checking for an occurrence of a marker on a live chart from
org.openqa.selenium.Point
Got it working with
Actions builder = new Actions(driver); WebElement el = some element; builder.keyDown(Keys.CONTROL) .moveByOffset( 10, 25 ) .clickAndHold(el) .build().perform();