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
// create stage
3
var stage = acgraph.create("container");
4
5
// set colors for sample
6
textColor = "#7C868E";
7
lineColor = "#CECECE";
8
chart_palette = anychart.palettes.distinctColors().colors(["#bC7C63", "#6594AD", "#585953"]);
9
10
// layer for the text elements
11
layer_text = stage.layer();
12
13
// legend on the chart
14
chartLegend = createLegend([
15
{index: 0, text: "Visits", iconFill: "#bC7C63"},
16
{index: 1, text: "Feeding", iconFill: "#6594AD"},
17
{index: 2, text: "Mating", iconFill: "#585953"}
18
]);
19
20
chartLegend.container(layer_text).draw();
21
22
// create main title
23
layer_text.text(20, 20, "Animals activitiy", {fontSize: 20});
24
// create subtitle
25
layer_text.text(20, 45, "Abies sibirica, 7 days observation period", {
26
fontSize: 18,
27
color: "#998552",
28
opacity: 20
29
});
30
31
// jay, woodpecker, squirrel, mouse
32
dataSet = [
33
["1", 4, 0, 0, 4, 4, 0, 3, 1, 1, 4, 10, 2],
34
["2", 2, 1, 0, 6, 5, 0, 2, 1, 0, 9, 11, 3],
35
["3", 2, 1, 0, 2, 1, 0, 4, 1, 1, 7, 8, 4],
36
["4", 2, 0, 0, 2, 2, 0, 4, 2, 0, 1, 12, 0],
37
["5", 3, 1, 1, 0, 0, 0, 1, 0, 0, 0, 10, 6],
38
["6", 1, 1, 0, 3, 2, 1, 0, 0, 0, 8, 10, 5],
39
["7", 2, 0, 1, 6, 3, 2, 2, 0, 1, 0, 7, 0]
40
];
41
42
// map all data as table into one series
43
series = anychart.data.mapAsTable(dataSet);
44
45
// settings for the block describing jay
46
jaySettings = {
47
// latin name of the animal
48
name: "Garrulus glandarius",
49
// position of the text
50
textX: 350,
51
textY: 175,
52
// the name of the picture of the animal in the folder with pictures
53
picture: "jay.jpg",
54
// the picture position
55
pictureY: 130,
56
// the path of the line connecting the picture with its part of the fur-tree
57
linePath: [[210, 190], [300, 130], [370, 130]],
58
// Y-position of the chart
59
chartY: 80,
60
// sets the data of this particular animal from the series
61
data: [series[0], series[1], series[2]],
62
// coordinates of the fur-tree piece where this animal lives
63
treePath: [[175, 120], [250, 240], [100, 240]],
64
// coordinates of the shadow of the fir-tree piece where this animal lives
65
shadowPath: [[175, 165], [250, 290], [100, 290]],
66
// the color of the fur-tree piece where this animal lives
67
treeColor: "#7CB342",
68
// makes this layer overlap others
69
zIndex: 10
70
};
71
// creates a
72
createSpecies(jaySettings);
73
74
// settings for the block describing woodpecker
75
woodpeckerSettings = {
76
name: "Dendrocopos analis",
77
textX: 350,
78
textY: 290,
79
picture: "woodpecker.jpg",
80
pictureY: 245,
81
linePath: [[250, 290], [300, 240], [370, 240]],
82
chartY: 195,
83
data: [series[3], series[4], series[5]],
84
treePath: [[175, 165], [280, 340], [70, 340]],
85
shadowPath: [[175, 240], [280, 395], [70, 395]],
86
treeColor: "#689F38",
87
zIndex: 8
88
};
89
90
createSpecies(woodpeckerSettings);
91
92
squirrelSettings = {
93
name: "Sciurus vulgaris",
94
textX: 360,
95
textY: 405,
96
picture: "sqirrel.jpg",
97
pictureY: 360,
98
linePath: [[260, 365], [370, 365]],
99
chartY: 310,
100
data: [series[6], series[7], series[8]],
101
treePath: [[175, 240], [310, 440], [40, 440]],
102
shadowPath: [[135, 400], [215, 400], [215, 520], [135, 520], [135, 400]],
103
treeColor: "#558B2F",
104
zIndex: 6
105
};
106
107
createSpecies(squirrelSettings);
108
109
mouseSettings = {
110
name: "Apodemus uralensis",
111
textX: 340,
112
textY: 520,
113
picture: "mouse.jpg",
114
pictureY: 475,
115
linePath: [[210, 465], [370, 465]],
116
chartY: 425,
117
data: [series[9], series[10], series[11]],
118
treePath: [[135, 400], [215, 400], [215, 520], [135, 520], [135, 400]],
119
shadowPath: [[135, 400], [215, 400], [215, 570], [135, 570], [135, 400]],
120
treeColor: "#6D4C41",
121
zIndex: 4
122
};
123
124
createSpecies(mouseSettings);
125
126
});
127
128
// an external function for creating legends
129
function createLegend(items) {
130
var legend = anychart.standalones.legend();
131
legend.align("left");
132
legend.margin(75, 0, 20, 10);
133
legend.items(items);
134
return legend;
135
}
136
137
// creates everything connected to the animal
138
function createSpecies(e) {
139
var layer = stage.layer();
140
layer.text(e.textX, e.textY, e.name).color(textColor);
141
var pic = draw_picture(layer, 400, [e.pictureY, 40], lineColor, e.picture);
142
var pic_shadow = layer.circle(400, e.pictureY, 60);
143
pic_shadow.fill(["black 0.5", "black 0"], .5, .5, null, .5, 0.5, 0.5);
144
pic_shadow.zIndex(-2);
145
pic_shadow.stroke(null);
146
var line = draw_line(layer, e.linePath, lineColor, -1);
147
var line_shadow = draw_line(layer, e.linePath, textColor, -1);
148
line_shadow.visible(false);
149
draw_chart(layer, e.data, [460, e.chartY, 250, 100]);
150
var tree_piece = draw_tree(layer, e.treePath, e.treeColor, 1, false);
151
var tree_shadow = draw_tree(layer, e.shadowPath, "#212121", -1, true);
152
tree_shadow.visible(false);
153
tree_shadow.disablePointerEvents(true);
154
on_hover(tree_piece, tree_shadow, line, line_shadow, pic, pic_shadow);
155
layer.zIndex(e.zIndex);
156
}
157
158
// an external function for drawing a piece of tree
159
function draw_tree(layer, points, color, z_index, shadow) {
160
if (shadow) fill = [color + " 0.5", color + " 0.4", color + " 0"]
161
else fill = color;
162
var piece = layer.path().moveTo(points[0][0], points[0][1]).zIndex(z_index).fill(fill, 270).stroke(null);
163
for (var i = 0; i < points.length; i++) piece.lineTo(points[i][0], points[i][1]);
164
return piece;
165
}
166
167
// an external function switching the behaviour
168
function on_hover(piece, shadow, line, lineShadow, img, imgShadow) {
169
toggle(false);
170
piece.listen("mouseOver", function () {
171
toggle(true);
172
});
173
piece.listen("mouseOut", function () {
174
toggle(false);
175
});
176
line.listen("mouseOver", function () {
177
toggle(true);
178
});
179
line.listen("mouseOut", function () {
180
toggle(false);
181
});
182
img.listen("mouseOver", function () {
183
toggle(true);
184
});
185
img.listen("mouseOut", function () {
186
toggle(false);
187
});
188
// enables and disables all shadows when an element is hovered or unhovered
189
function toggle(e) {
190
shadow.visible(e);
191
lineShadow.visible(e);
192
imgShadow.visible(e);
193
}
194
}
195
196
// draws a chart with passed parameters of the particular animal
197
function draw_chart(container, data, bounds) {
198
var chart = anychart.line();
199
chart.palette(chart_palette);
200
201
setupSeries("Visits", data[0], chart);
202
setupSeries("Feeding", data[1], chart);
203
setupSeries("Mating", data[2], chart);
204
205
chart.bounds(bounds);
206
chart.yScale().ticks().interval(2);
207
chart.yAxis().drawFirstLabel(true);
208
chart.xAxis(false);
209
chart.tooltip().title(false);
210
chart.tooltip().separator(false);
211
chart.container(container).draw();
212
}
213
214
// creates series
215
function setupSeries(name, data, chart) {
216
var series = chart.line(data);
217
series.name(name);
218
series.clip(false);
219
}
220
221
// draws a line connecting picture of animal and the fur-tree part
222
function draw_line(layer, points, color, z_index) {
223
var line = layer.path().moveTo(points[0][0], points[0][1]).stroke(color).zIndex(z_index);
224
for (var i = 0; i < points.length; i++) {
225
line.lineTo(points[i][0], points[i][1]);
226
}
227
return line;
228
}
229
230
// draws a picture for an animal taken from the url
231
function draw_picture(layer, radius, coordinates, color, pic_name) {
232
layer.circle(radius, coordinates[0], coordinates[1])
233
.stroke(color)
234
.fill({
235
src: "https://static.anychart.com/images/graphics_stage_demo/" + pic_name,
236
mode: acgraph.vector.ImageFillMode.FILL
237
});
238
return layer;
239
}