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 dataSet = anychart.data.set([
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
var chart = anychart.pyramid(dataSet);
13
chart.selected({fill: '#aed581'});
14
chart.title('Set select on elements by array of indexes');
15
chart.labels({position: 'inside'});
16
chart.container('container');
17
chart.draw();
18
19
// Set select for second and fourth elements by 1 and 3 index.
20
chart.select([1, 3]);
21
});