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.waterfall([
3
{x: 'Net Sales', value: 5085000},
4
{x: 'Cost of Sales', value: -1250450},
5
{x: 'Gross Income', isTotal: true},
6
{x: 'Operating Expenses', value: -2350050},
7
{x: 'Operating Income', isTotal: true},
8
{x: 'Other Income', value: 750000},
9
{x: 'Extraordinary Gain', value: -230050}
10
]);
11
12
// Get connectors
13
chart.connectors({
14
stroke: 'red',
15
labels: {
16
enabled: true,
17
position: 'center-top',
18
format: 'Relative: {%stack}\nAbsolute: {%total}',
19
background: {
20
enabled: true,
21
fill: {
22
color: '#00bfa5',
23
opacity: 0.3
24
}
25
}
26
}
27
});
28
29
chart.title('Set connectors settings.');
30
chart.container('container');
31
chart.draw();
32
});