Skip to content Skip to sidebar Skip to footer

Is There A Way To Style Segmentpoints And Handles?

I need to style SegmentPoints and Handles with a different color. Not one which is using for path.strokeColor or path.selectedColor. Also possible that I will need to change the s

Solution 1:

The only way to change the style of the handle is to draw them manually. This is quite easy to do, just draw a line between handle points and a shape at those points.

Obviously, you would not need to select the paths if you draw custom handles: path.selected = false;.

Post a Comment for "Is There A Way To Style Segmentpoints And Handles?"