Welcome to the Highcharts JS (highcharts) Options Reference

These pages outline the chart configuration options, and the methods and properties of Highcharts objects.

Feel free to search this API through the search bar or the navigation tree in the sidebar.

plotOptions.networkgraph.layoutAlgorithm.attractiveForce

Attraction force applied on a node which is conected to another node by a link. Passed are two arguments:

  • d - which is current distance between two nodes
  • k - which is desired distance between two nodes

In verlet integration, defaults to: function (d, k) { return (k - d) / d; }