作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为图形布局使用“cose”或“cose-bilkent”,但是当使用“cose”时,没有任何反应,使用“cose-bilkent”时说:
“错误:找不到这样的布局 cose-bilkent
。您是否忘记导入它并 cytoscape.use()
它?”
我确实使用了它,并安装了 cose-bilkent 的软件包。
import React, { Component } from 'react';
import api from '../../services/api';
import Cytoscape from 'cytoscape';
import CytoscapeComponent from 'react-cytoscapejs';
import CoseBilkent from 'cytoscape-cose-bilkent';
Cytoscape.use( CoseBilkent );
export default class Demo extends Component {
state = {
w: 0,
h: 0,
elements: [],
allBooks: [],
allAuthors: [],
}
render() {
const layout = {
name: 'cose-bilkent',
};
return(
<div>
<CytoscapeComponent
elements={this.state.elements}
style={{ width: this.state.w, height: this.state.h }}
cy={(cy) => {this.cy = cy}}
layout={layout}
/>
</div>
);
}
}
最佳答案
我已经解决了这个问题。 React Cytoscape 的文档没有告知布局工作需要另一个 Prop 。所以我从Cytoscape官方文档中得到了一个例子。
const layout = {
name: 'cose',
ready: function(){},
stop: function(){},
animate: true,
animationEasing: undefined,
animationDuration: undefined,
animateFilter: function ( node, i ){ return true; },
animationThreshold: 250,
refresh: 20,
fit: true,
padding: 30,
boundingBox: undefined,
nodeDimensionsIncludeLabels: false,
randomize: false,
componentSpacing: 40,
nodeRepulsion: function( node ){ return 2048; },
nodeOverlap: 4,
edgeElasticity: function( edge ){ return 32; },
nestingFactor: 1.2,
gravity: 1,
numIter: 1000,
initialTemp: 1000,
coolingFactor: 0.99,
minTemp: 1.0
};
关于javascript - Layout 的 CystoscapeJs 与 React 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59078742/
我正在尝试为图形布局使用“cose”或“cose-bilkent”,但是当使用“cose”时,没有任何反应,使用“cose-bilkent”时说: “错误:找不到这样的布局 cose-bilkent。
我是一名优秀的程序员,十分优秀!