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
var stage = anychart.graphics.create('container');
3
4
var chart1 = anychart.pyramid([
5
{x: 'Physical', value: 125},
6
{x: 'Data Link', value: 125},
7
{x: 'Network', value: 125},
8
{x: 'Transport', value: 125},
9
{x: 'Session', value: 125},
10
{x: 'Presentation', value: 125},
11
{x: 'Application', value: 390, label: {anchor: 'center-top'}}
12
]);
13
chart1.bounds(0, 20, '50%', '100%');
14
chart1.labels({position: 'inside'});
15
chart1.stroke('#4CAF50', 3);
16
chart1.container(stage);
17
chart1.draw();
18
19
var chart2 = anychart.funnel([10, 3, 7, 10, 5]);
20
chart2.bounds('50%', 20, '50%', '100%');
21
chart2.labels({position: 'inside'});
22
23
// Get stroke.
24
var stroke = chart1.stroke();
25
26
chart2.stroke(stroke);
27
chart2.container(stage);
28
chart2.draw();
29
30
var customTitle = anychart.standalones.title();
31
customTitle.text('Get and use chart stroke');
32
customTitle.container(stage);
33
customTitle.draw();
34
});