HTMLcopy
1
<button id="removeArrow">Remove arrow</button>
2
<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
// Add arrow.
13
var arrow = chart.addArrow({from: 'Cost of Sales', to: 'Operating Expenses'});
14
15
// Remove arrow on button click.
16
document.getElementById('removeArrow').addEventListener('click', () => {
17
var result = chart.removeArrow(arrow);
18
chart.title('Arrow remove result: ' + result);
19
});
20
21
chart.title('Remove arrow.');
22
chart.container('container');
23
chart.draw();
24
});