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.column3d([
3
{x: 'January', value: 2},
4
{x: 'February', value: 5},
5
{x: 'March', value: 3},
6
{x: 'April', value: 9},
7
{x: 'May', value: 4}
8
]);
9
10
// Set selected state.
11
chart.selected({labels: {enabled: true, fontColor: '#F44336'}});
12
13
chart.title('Set selected state settings');
14
chart.container('container');
15
chart.draw();
16
17
chart.getSeries(0).select([0, 2]);
18
});