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 chart = anychart.pyramid([
3
{x: 'Physical', value: 125},
4
{x: 'Data Link', value: 125},
5
{x: 'Network', value: 125},
6
{x: 'Transport', value: 125},
7
{x: 'Session', value: 125},
8
{x: 'Presentation', value: 125},
9
{x: 'Application', value: 290}
10
]);
11
12
// Set left bound
13
chart.left('10%');
14
15
// Set right bound
16
chart.right('10%');
17
18
// Set top bound
19
chart.top('20%');
20
21
// Set bottom bound
22
chart.bottom('20%');
23
24
chart.title('Set left/right/top/bottom bound');
25
chart.labels(false);
26
chart.container('container');
27
chart.draw();
28
});