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.polar();
3
4
var series = chart.polyline([
5
{x: 0, value: 6},
6
{x: 1, value: 4},
7
{x: 2, value: 6},
8
{x: 3, value: 3},
9
{x: 4, value: 6},
10
{x: 5, value: 4}
11
]);
12
13
// Set stroke.
14
series.stroke(function () {
15
return "3 " + anychart.color.darken(this.sourceColor);
16
});
17
18
chart.title("Set hover stroke parameter as a function");
19
chart.container("container");
20
chart.draw();
21
});