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.radar();
3
4
var firstSeries = chart.line([
5
{x: "January", value: 3},
6
{x: "February", value: 6},
7
{x: "March", value: 3},
8
{x: "April", value: 6},
9
{x: "May", value: 3},
10
{x: "June", value: 6},
11
{x: "Jule", value: 3},
12
{x: "August", value: 6}
13
]);
14
15
var secondSeries = chart.area([
16
{x: "January", value: 2},
17
{x: "February", value: 5},
18
{x: "March", value: 2},
19
{x: "April", value: 5},
20
{x: "May", value: 2},
21
{x: "June", value: 5},
22
{x: "Jule", value: 2},
23
{x: "August", value: 5}
24
]);
25
26
chart.legend(true);
27
28
// Set legend item.
29
firstSeries.legendItem({text: "Light blue area", iconType: "circle", iconFill: "#03A9F4"});
30
secondSeries.legendItem({text: "Blue line", iconType: "square", iconFill: "#2196F3"});
31
32
chart.title("Set legend item");
33
chart.container("container");
34
chart.draw();
35
});