* @function GraphMap.prototype.highlight * @version 11.2.0 * @description 高亮节点和边。(在渲染完成后调用) * @param {KnowledgeGraph.highlightParams} params - 高亮参数。
(params)
| 122 | * @param {KnowledgeGraph.highlightParams} params - 高亮参数。 |
| 123 | */ |
| 124 | highlight(params) { |
| 125 | if (!this.graph) { |
| 126 | return; |
| 127 | } |
| 128 | this.graph.highlight(params); |
| 129 | } |
| 130 | /** |
| 131 | * @function GraphMap.prototype.clearHighlight |
| 132 | * @version 11.2.0 |
no outgoing calls
no test coverage detected