1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<a href="javascript:history.go(-1)"><i class='fa fa-reply'></i></a>
<div id="chart"></div>
<style>
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.link.proc2host {
stroke-dasharray: 0,2 1;
}
circle {
fill: #ccc;
stroke: #333;
stroke-width: 1.5px;
}
text {
font: 10px sans-serif;
pointer-events: none;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
}
</style>
<script>
var links; // a global
var nodes = {};
|