Disable dragSelectingTool

Hi Team,

I am working on a prototype with Gojs Diagram and I want to disable the dragSelectingTool which is activated on the diagram by default with magenta coloured window.

I searched through the forum and docs, didnt find any help.

I also tried following, but nothing worked

  • dragSelectingTool : “”

  • dragSelectingTool: {}

any quick help would be really appreciated.

regards,
Manoj Kumar Lakshman

Just set Tool.isEnabled to false:

$(go.Diagram, . . .,
  {
    . . .,
    "dragSelectingTool.isEnabled": false
  })

thanks walter :)