HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
3
//create data
4
var data = [
5
{
6
x: "A",
7
name: "Set A",
8
custom_field: "info 1",
9
value: 100
10
},
11
{
12
x: "B",
13
name: "Set A",
14
custom_field: "info 2",
15
value: 100
16
},
17
{
18
x: ["A", "B"],
19
name: "Set A + Set B",
20
custom_field: "info 3",
21
value: 25
22
}
23
];
24
25
// create a chart and set the data
26
chart = anychart.venn(data);
27
28
// configure tooltips of circles
29
chart.tooltip().format(
30
"Set Info: {%custom_field}\nCardinality: {%value}"
31
);
32
33
// configure tooltips of intersections
34
chart.intersections().tooltip().format(
35
"Intersection Info: {%custom_field}\nCardinality: {%value}"
36
);
37
38
// disable labels
39
chart.labels(false);
40
41
// set the chart title
42
chart.title("Venn Diagram: Tooltips");
43
44
// set the container id
45
chart.container('container');
46
47
// initiate drawing the chart
48
chart.draw();
49
});