Using TouchEvent class doesnot allow me to draw Signature on Canvas

When i tried to execute these lines of Code

Actions builder= new Actions(driver);
WebElement canvas = driver.findElement(By.id(“signatureView”));

TouchAction temp = new TouchAction(driver);
temp.moveTo(canvas ,200, 60).perform();

I got below exception

[AndroidBootstrap] [BOOTSTRAP LOG] [debug] Performing TouchMove using element? true x: 800, y: 340
[AndroidBootstrap] [BOOTSTRAP LOG] [debug] Returning result: {“status”:13,“value”:“Failed to execute touch event”}
[debug] [AndroidBootstrap] Received command result from bootstrap
[HTTP] <-- POST /wd/hub/session/5f31bba6-5a3e-4d4d-a02b-970f3093620a/touch/perform 500 163 ms - 154

Any help would really appreciated
Thanks