diff --git a/HISTORY.md b/HISTORY.md index 8a56d85f..85e63c04 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -16,6 +16,7 @@ http://visjs.org - Fixed clustering bug. - Added getNodesInCluster method. - Renamed editNodeMode to editNode, editNodeMode now give a deprication log message. +- Added multiselect to the docs. ### Graph2d & Timeline diff --git a/docs/network/interaction.html b/docs/network/interaction.html index 54a306c4..bbd4f1ba 100644 --- a/docs/network/interaction.html +++ b/docs/network/interaction.html @@ -91,6 +91,7 @@ var options = { speed: {x: 10, y: 10, zoom: 0.02}, bindToWindow: true }, + multiselect: false, navigationButtons: false, selectable: true, selectConnectedEdges: true, @@ -127,6 +128,7 @@ network.setOptions(options); keyboard.speed.y Number 1 The speed at which the view moves in the y direction on pressing a key or pressing a navigation button. keyboard.speed.zoom Number 0.02 The speed at which the view zooms in or out pressing a key or pressing a navigation button. keyboard.bindToWindow Boolean true When binding the keyboard shortcuts to the window, they will work regardless of which DOM object has the focus. If you have multiple networks on your page, you could set this to false, making sure the keyboard shortcuts only work on the network that has the focus. + multiselect Boolean false When true, a longheld click (or touch) as well as a control-click will add to the selection. navigationButtons Boolean false When true, navigation buttons are drawn on the network canvas. These are HTML buttons and can be completely customized using CSS. selectable BooleantrueWhen true, the nodes and edges can be selected by the user. selectConnectedEdges BooleantrueWhen true, on selecting a node, its connecting edges are highlighted.