mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-03-04 17:49:55 +01:00
Start again
This commit is contained in:
96
vendors/echarts/test/force.html
vendored
Normal file
96
vendors/echarts/test/force.html
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script src="esl.js"></script>
|
||||
<script src="config.js"></script>
|
||||
<script src="lib/jquery.min.js"></script>
|
||||
<script src="lib/dat.gui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<style>
|
||||
html, body, #main {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
<div id="main"></div>
|
||||
<script>
|
||||
|
||||
require([
|
||||
'echarts',
|
||||
|
||||
'extension/dataTool/gexf',
|
||||
|
||||
'echarts/chart/graph',
|
||||
|
||||
'echarts/component/title',
|
||||
'echarts/component/legend',
|
||||
'echarts/component/geo',
|
||||
'echarts/component/tooltip',
|
||||
'echarts/component/visualMap'
|
||||
], function (echarts) {
|
||||
|
||||
var chart = echarts.init(document.getElementById('main'), null, {
|
||||
renderer: 'canvas'
|
||||
});
|
||||
|
||||
function createNodes(count) {
|
||||
var nodes = [];
|
||||
for (var i = 0; i < count; i++) {
|
||||
nodes.push({
|
||||
id: i
|
||||
});
|
||||
}
|
||||
return nodes;
|
||||
}
|
||||
|
||||
function createEdges(count) {
|
||||
var edges = [];
|
||||
if (count === 2) {
|
||||
return [[0, 1]];
|
||||
}
|
||||
for (var i = 0; i < count; i++) {
|
||||
edges.push([i, (i + 1) % count]);
|
||||
}
|
||||
return edges;
|
||||
}
|
||||
|
||||
var datas = [];
|
||||
for (var i = 0; i < 16; i++) {
|
||||
datas.push({
|
||||
nodes: createNodes(i + 2),
|
||||
edges: createEdges(i + 2)
|
||||
});
|
||||
}
|
||||
|
||||
chart.setOption({
|
||||
series: datas.map(function (item, idx) {
|
||||
return {
|
||||
type: 'graph',
|
||||
layout: 'force',
|
||||
animation: false,
|
||||
data: item.nodes,
|
||||
left: (idx % 4) * 25 + '%',
|
||||
top: Math.floor(idx / 4) * 25 + '%',
|
||||
width: '25%',
|
||||
height: '25%',
|
||||
force: {
|
||||
// initLayout: 'circular'
|
||||
// gravity: 0
|
||||
repulsion: 100,
|
||||
edgeLength: 5
|
||||
},
|
||||
edges: item.edges.map(function (e) {
|
||||
return {
|
||||
source: e[0],
|
||||
target: e[1]
|
||||
};
|
||||
})
|
||||
};
|
||||
})
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user