Hello I'm using Raphael's wheelnav.js and would like to custom the Marker Drop path with another svg path ?
https://wheelnavjs.softwaretailoring.net/documentation/marker.html
I made a class css with a custom path link that works on chrome but not on firefox and safari.
example there --> https://infinistudio.ch/test/
Can we change the link of the path in javascript?
I tried this without success:
wheel.markerFunction = markerPath().DropMarker;
wheel.markerPath = "imgsrc:mascot.svg";
You have to use the
markerPathFunctionproperty with your custom SVG path. (There is no such property likemarkerFunctionandmarkerPath.)In your case (it works with HTML tags), you have to use the data-wheelnav-init attribute also.