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.onDocumentLoad(function() {
2
var stage = acgraph.create('container');
3
4
var chart1 = anychart.graph();
5
chart1.data(data);
6
chart1.title().enabled(true).text('Zoom on mousewheel');
7
chart1.bounds(0, 0, '50%', '100%');
8
chart1.interactivity().zoomOnMouseWheel(true);
9
10
var chart2 = anychart.graph(data);
11
chart2.title().enabled(true).text('Scroll on mousewheel');
12
chart2.bounds('50%', 0, '50%', '100%');
13
chart2.interactivity().scrollOnMouseWheel(true);
14
15
chart1.container(stage).draw();
16
chart2.container(stage).draw();
17
});
18
var data = {
19
nodes: [
20
{"id": "a"},
21
{"id": "a1"},
22
{"id": "a2"},
23
{"id": "a3"},
24
{"id": "a4"},
25
{"id": "a5"},
26
{"id": "a6"},
27
{"id": "b"},
28
{"id": "b1"},
29
{"id": "b2"},
30
{"id": "b3"},
31
{"id": "b4"},
32
{"id": "b5"},
33
{"id": "b6"}
34
],
35
edges: [
36
{from: 'a', to: 'b'},
37
{from: 'a', to: 'a1'},
38
{from: 'a', to: 'a2'},
39
{from: 'a', to: 'a3'},
40
{from: 'a', to: 'a4'},
41
{from: 'a', to: 'a5'},
42
{from: 'a', to: 'a6'},
43
{from: 'b', to: 'b1'},
44
{from: 'b', to: 'b2'},
45
{from: 'b', to: 'b3'},
46
{from: 'b', to: 'b4'},
47
{from: 'b', to: 'b5'},
48
{from: 'b', to: 'b6'},
49
]
50
};