MCPcopy Index your code
hub / github.com/apache/echarts / getKeyOfEdges

Function getKeyOfEdges

src/chart/helper/multipleGraphEdgeHelper.ts:75–79  ·  view source on GitHub ↗
(n1, n2, seriesModel)

Source from the content-addressed store, hash-verified

73 * @returns {string} key
74 */
75const getKeyOfEdges = function (n1, n2, seriesModel) {
76 const source = [n1.id, n1.dataIndex].join('.');
77 const target = [n2.id, n2.dataIndex].join('.');
78 return [seriesModel.uid, source, target].join(KEY_DELIMITER);
79};
80
81/**
82 * get opposite key

Callers 4

getEdgeFromMapFunction · 0.85
getCurvenessForEdgeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…