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 chart credits settings.
13
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
14
chart.credits({text: 'Changed credits', url: 'https://www.anychart.com/buy/'});
15
16
chart.title('Set chart credits parameter as an object');
17
chart.labels(false);
18
chart.container('container');
19
chart.draw();
20
});