I searched the documentation of GoJS, but nothing was found. Is it possible?
Asked
Active
Viewed 1,840 times
3
-
https://gojs.net/latest/intro/HTMLInteraction.html#HTMLFocusOnDiagrams. Not surprised you didn't find it but it is there. – Tadhg McDonald-Jensen Dec 18 '18 at 14:44
1 Answers
6
Remove the outline from all HTML Canvas elements inside your Diagram div. Add this to your CSS:
#myDiagram canvas {
outline: none;
}
Live example in GoJS:

Simon Sarris
- 62,212
- 13
- 141
- 171