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.
Repulsive force applied on a node. Passed are two arguments:
d
- which is current distance between two nodesk
- which is desired distance between two nodesIn verlet
integration, defaults to:
function (d, k) { return (k - d) / d * (k > d ? 1 : 0) }