3

I searched the documentation of GoJS, but nothing was found. Is it possible?

DANG Fan
  • 854
  • 11
  • 21

1 Answers1

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:

http://codepen.io/simonsarris/pen/FviEw

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