Raised when an anchor point must be custom-drawn.
Namespace: MindFusion.Diagramming
File: DiagramBase.js
SyntaxJavaScript
Copy Code
|
|---|
| diagram.drawAnchorPoint.addEventListener(onDrawAnchorPoint); function onDrawAnchorPoint(sender, args) { } |
Event DataEvent handlers receive a DrawAnchorPointEventArgs instance that contains data about this event.
RemarksSet the markStyle property of AnchorPoint to Custom to get this event raised.
ExampleJavaScript
Copy Code
|
|---|
| 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