我找到了一个很好的JS包,可以生成维恩图。我正在尝试使用一些新值来复制示例代码,但是到目前为止,我还没有成功。
博客文章:https://www.benfrederickson.com/venn-diagrams-with-d3.js/
Github:https://github.com/benfred/venn.js
示例:http://benfred.github.io/venn.js/examples/intersection_tooltip.html
我将代码剥离到最低限度以下:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
.venntooltip {
position: absolute;
text-align: center;
width: 128px;
height: 16px;
background: #333;
color: #ddd;
padding: 2px;
border: 0px;
border-radius: 8px;
opacity: 0;
}
</style>
</head>
<body>
<div id="venn"></div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="http://benfred.github.io/venn.js/venn.js"></script>
<script>
// define sets and set set intersections
var sets = [{ "sets": [0], "size": 3683, "label": "0 X" }, { "sets": [1], "size": 3650, "label": "1 X" }, { "sets": [2], "size": 4800, "label": "2 X" }, { "sets": [0, 2], "size": 866 }, { "sets": [1, 2], "size": 833 }, { "sets": [0, 1, 2], "size": 2817 }];
var chart = venn.VennDiagram().width(1024).height(1024);
var div = d3.select("#venn")
div.datum(sets).call(chart);
</script>
</body>
</html>
我应该从中得到的是一个带有三个重叠圆的简单SVG。
我假设我的var sets
中有一些混乱,但是我尝试调整了几个小时,但没有成功。
有人可以指出我在做什么错吗?
答案 0 :(得分:1)
我在上面尝试了您的代码,它在http服务器上工作正常,但在jsFiddle中不起作用。可能是您的开发环境或浏览器。即使双击.html文件,它也会在chrome中显示出来,从而正确显示SVG:
<svg width="1024" height="1024"><g class="venn-area venn-circle" data-venn-sets="0"><path d="
M 807.1589756762538 512
m -201.8410243237462 0
a 201.8410243237462 201.8410243237462 0 1 0 403.6820486474924 0
a 201.8410243237462 201.8410243237462 0 1 0 -403.6820486474924 0" style="fill-opacity: 0.25; fill: rgb(31, 119, 180);"></path><text class="label" text-anchor="middle" dy=".35em" x="876" y="511" style="fill: rgb(31, 119, 180);"><tspan x="876" y="511" dy="0.35em">0 X</tspan></text></g><g class="venn-area venn-circle" data-venn-sets="1"><path d="
M 215.93473308618636 512
m -200.93473308618638 0
a 200.93473308618638 200.93473308618638 0 1 0 401.86946617237277 0
a 200.93473308618638 200.93473308618638 0 1 0 -401.86946617237277 0" style="fill-opacity: 0.25; fill: rgb(255, 127, 14);"></path><text class="label" text-anchor="middle" dy=".35em" x="148" y="511" style="fill: rgb(255, 127, 14);"><tspan x="148" y="511" dy="0.35em">1 X</tspan></text></g><g class="venn-area venn-circle" data-venn-sets="2"><path d="
M 512.8582181751124 512
m -230.42479022003167 0
a 230.42479022003167 230.42479022003167 0 1 0 460.84958044006333 0
a 230.42479022003167 230.42479022003167 0 1 0 -460.84958044006333 0" style="fill-opacity: 0.25; fill: rgb(44, 160, 44);"></path><text class="label" text-anchor="middle" dy=".35em" x="511" y="397" style="fill: rgb(44, 160, 44);"><tspan x="511" y="397" dy="0.35em">2 X</tspan></text></g><g class="venn-area venn-intersection" data-venn-sets="0_2"><path d="
M 681.000362208242 669.5557150594287
A 201.8410243237462 201.8410243237462 0 0 1 681.000362208242 354.44428494057126
A 230.42479022003167 230.42479022003167 0 0 1 681.000362208242 669.5557150594287" style="fill-opacity: 0;"></path><text class="label" text-anchor="middle" dy=".35em" x="674" y="512" style="fill: rgb(68, 68, 68);"><tspan x="674" y="512" dy="0.35em"></tspan></text></g><g class="venn-area venn-intersection" data-venn-sets="1_2"><path d="
M 342.9754402017427 667.6773127208855
A 230.42479022003167 230.42479022003167 0 0 1 342.9754402017427 356.32268727911446
A 200.93473308618638 200.93473308618638 0 0 1 342.9754402017427 667.6773127208855" style="fill-opacity: 0;"></path><text class="label" text-anchor="middle" dy=".35em" x="349" y="512" style="fill: rgb(68, 68, 68);"><tspan x="349" y="512" dy="0.35em"></tspan></text></g><g class="venn-area venn-intersection" data-venn-sets="0_1_2"><path d="M 0 0" style="fill-opacity: 0;"></path><text class="label" text-anchor="middle" dy=".35em" x="0" y="-1000" style="fill: rgb(68, 68, 68);"><tspan x="0" y="-1000" dy="0.35em"></tspan></text></g></svg>
几年前,我在生产中使用了这个确切的库-这很棘手。关键是仔细查看尺寸:数字。我们遇到的数据具有足够的关系,(在某些情况下)无法呈现维恩。它会悄悄地出错并且不会呈现所有关系。因此,我们放入了一个polyfill,它将重新渲染(多组),直到显示所有关系为止。
您只是看到白屏吗?我要做的一件事是下载两个.js文件并在本地引用它们。这可能会解决问题。检查控制台日志中是否有错误。 Chrome DevTools可能会有所帮助。另外,我使用的服务器是npm的http服务器。只需在任何目录中键入http-server,然后输入.html的路径,它将在http://localhost:8080/path/to/your/venn.html上。
希望有帮助。
答案 1 :(得分:0)
尽管我不完全理解为什么,但是以下是我的解决方案。 我需要添加一个额外的集合,该集合明确定义了圆圈0和圆圈1重叠的事实。我还调整了“大小”值,以使其更易于在心理上遵循。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
.venntooltip {
position: absolute;
text-align: center;
width: 128px;
height: 16px;
background: #333;
color: #ddd;
padding: 2px;
border: 0px;
border-radius: 8px;
opacity: 0;
}
</style>
</head>
<body>
<div id="venn"></div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="http://benfred.github.io/venn.js/venn.js"></script>
<script>
// define sets and set set intersections
var sets = [
{ "sets": [0], "size": 100, "label": "0 X" },
{ "sets": [1], "size": 100, "label": "1 X" },
{ "sets": [2], "size": 100, "label": "2 X" },
{ "sets": [0, 1], "size": 50 },
{ "sets": [0, 2], "size": 50 },
{ "sets": [1, 2], "size": 50 },
{ "sets": [0, 1, 2], "size": 25 }];
var chart = venn.VennDiagram().width(1024).height(1024);
var div = d3.select("#venn")
div.datum(sets).call(chart);
</script>
</body>
</html>