diff --git a/docs/network/index.html b/docs/network/index.html index 9bdf520a..7a438717 100644 --- a/docs/network/index.html +++ b/docs/network/index.html @@ -645,7 +645,20 @@ var locales = { Returns: Value When a clusteredEdgeId is available, this method will return the original baseEdgeId provided in data.edges
- ie. After clustering the 'SelectEdge' event is fired but provides only the clustered edge. This method can then be used to return the baseEdgeId. + ie. After clustering the 'SelectEdge' event is fired but provides only the clustered edge. This method can then be used to return the baseEdgeId.

+ This method is deprecated. Please use getBaseEdges() instead. + + + + + getBaseEdges(String clusteredEdgeId) + + + + Returns: Array + For the given clusteredEdgeId, this method will return all the original base edge id's provided in data.edges. + For a non-clustered (i.e. 'base') edge, clusteredEdgeId is returned.

+ Only the base edge id's are returned. All clustered edges id's under clusteredEdgeId are skipped, but scanned recursively to return their base id's.
diff --git a/examples/network/other/changingClusteredEdgesNodes.html b/examples/network/other/changingClusteredEdgesNodes.html index 0f079720..4bb324d9 100644 --- a/examples/network/other/changingClusteredEdgesNodes.html +++ b/examples/network/other/changingClusteredEdgesNodes.html @@ -27,9 +27,9 @@

-Demonstrating getBaseEdge, getClusteredEdges updateEdge and updateClusteredNode.