gpt4 book ai didi

javascript - 如何在 Vis.js 网络图中设置图像大小

转载 作者:行者123 更新时间:2023-11-29 10:43:00 25 4
gpt4 key购买 nike

我正在使用 vis.js 构建网络图

问题是,如何使所有图像的大小相同vis.js network graph(查看此处的实例 --> comparison of wordpress & drupal)

这是图形代码:

    var nodes = [];
nodes.push({
id: 7,
shape: 'image',
image: '/static/windows8_icons/PNG/Industry/circuit/circuit-26.png',
label: 'sharepoint',
widthMin: 20,
widthMax: 20
});
edges.push({
from: 1,
to: 7,
length: 100
});

var data = {
nodes: nodes,
edges: edges
};

var options = {
smoothCurves: false,
stabilize: false,
nodes: {
shape: 'image',
radius: 24,
fontSize: 18,
widthMin: 20,
widthMax: 20
},
edges: {
width: 2
}
};
network = new vis.Network(container, data, options);

最佳答案

寻找节点的大小属性。

例子

nodes:{shape:'image',size:20}

引用:http://visjs.org/docs/network/nodes.html

关于javascript - 如何在 Vis.js 网络图中设置图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25135926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com