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.onDocumentLoad(function () {
2
var dataSet = anychart.data.set([
3
[15, 9, 14.29, 10.7, 8.589, 13.44],
4
[30, 7, 42.96, 8.75, 10.59, 9.12],
5
[45, 10, 57.64, 8.82, 54.26, 6.15],
6
[60, 7, 57.7, 9.83, 66.81, 8.23],
7
[75, 8, 54.94, 11.1, 19.95, 7.7],
8
[90, 7, 26.39, 4.91, 23.21, 5.36],
9
[105, 9, 49.62, 11.81, 9.49, 13.19],
10
[120, 3, 87.82, 6.82, 98.62, 7.02],
11
[135, 6, 81.56, 7.71, 35.13, 9.22],
12
[150, 2, 44.62, 5.18, 62.21, 4.61],
13
[165, 5, 107.54, 4.75, 161.42, 7.75],
14
[180, 6, 43.88, 10.07, 153.18, 5.65],
15
[195, 3, 56.48, 6.11, 153.08, 5.42],
16
[210, 6, 123.22, 7.16, 127.81, 9.73],
17
[225, 6, 144.81, 6.54, 120.58, 5.02],
18
[240, 6, 129.37, 10.22, 91.01, 8.48],
19
[255, 5, 158.61, 6.11, 90.15, 6.5],
20
[270, 4, 74.77, 6.74, 5.8, 7.53],
21
[285, 10, 19.45, 14.41, 144.32, 6.37],
22
[300, 4, 156.2, 6.7, 284.68, 6.01],
23
[315, 8, 220.43, 12.49, 34.43, 11.25],
24
[330, 5, 124.03, 8.41, 120.56, 4.62],
25
[345, 6, 47.04, 10.24, 131.05, 9.04],
26
[360, 3, 3.5, 6.99, 3.5, 5.47]
27
]);
28
29
//map data for the first series, take x from the zero column and value from the first column of data set
30
var seriesData_1 = dataSet.mapAs({x: [0], value: [1]});
31
32
//map data for the second series, take x from the second column and value from the third column of data set
33
var seriesData_2 = dataSet.mapAs({x: [2], value: [3]});
34
35
//map data for the second series, take x from the fourth column and value from the fifth column of data set
36
var seriesData_3 = dataSet.mapAs({x: [4], value: [5]});
37
38
//create polar chart
39
var chart = anychart.polar();
40
41
//set container id for the chart
42
chart.container('container');
43
44
//set chart yScale settings
45
chart.yScale().minimum(0).maximum(16);
46
chart.yScale().ticks().interval(2);
47
48
//set chart xScale settings
49
chart.xScale().maximum(360);
50
chart.xScale().ticks().interval(15);
51
52
//set xAxis formatting settings
53
chart.xAxis().labels().textFormatter(function () {
54
return this['value'] + '?'
55
});
56
57
//disable chart title
58
chart.title(false);
59
60
//set chart legend settings
61
chart.legend({
62
position: 'right',
63
align: 'left',
64
itemsLayout: 'vertical'
65
});
66
67
var series1 = chart.marker(seriesData_1);
68
series1.type('star5');
69
series1.name('Signal A');
70
series1.size(4).hoverSize(8);
71
series1.fill('rgb(105, 184, 234)').stroke('rgb(19, 93, 140)');
72
73
var series2 = chart.marker(seriesData_2);
74
series2.type('rect');
75
series2.name('Signal B');
76
series2.size(4).hoverSize(8);
77
series2.fill('rgb(245, 146, 115)').stroke('rgb(164, 48, 11)');
78
79
var series3 = chart.marker(seriesData_3);
80
series3.type('diamond');
81
series3.name('Signal C');
82
series3.size(4).hoverSize(8);
83
series3.fill('rgb(116, 228, 116)').stroke('rgb(26, 139, 26)');
84
85
//initiate chart drawing
86
chart.draw();
87
});