Raised when an anchor point must be custom-drawn.
Namespace: MindFusion.Diagramming
File: Events.js
SyntaxJavaScript
Copy Code
|
|---|
get drawAnchorPoint() {} |
String
A string containing the event name.
RemarksSet the markStyle property of AnchorPoint to Custom to get this event raised. Handlers receive a DrawAnchorPointEventArgs instance as argument.
ExampleJavaScript
Copy Code
|
|---|
| diagram.addEventListener( Events.drawAnchorPoint, onDrawAnchorPoint); function onDrawAnchorPoint(sender, e) { var p = e.location; var ctx = e.context; ctx.fillStyle = "red"; ctx.fillRect(p.x - 1, p.y - 1, 2, 2); } |
See Also