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.area();
3
4
var series = chart.splineArea([
5
{x: 'January', value: 125},
6
{x: 'February', value: -132},
7
{x: 'March', value: 141},
8
{x: 'April', value: -158},
9
{x: 'May', value: 133},
10
{x: 'June', value: -143}
11
]);
12
13
// Set negative stroke.
14
series.negativeStroke(function () {
15
return anychart.color.setThickness(anychart.color.darken(this.sourceColor), 5);
16
});
17
18
chart.title('Set negative stroke parameter as a function');
19
chart.container('container');
20
chart.draw();
21
});