anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
['ID BCG', 0.7390698290165805, 1, 0.5487479259581779],
var data1 = dataSet.mapAs({ x: 0, value: 1 });
var data2 = dataSet.mapAs({ x: 0, value: 2 });
var data3 = dataSet.mapAs({ x: 0, value: 3 });
var chart = anychart.radar ();
chart.padding().bottom(70);
chart.yScale().minimum(-0.2).maximum(1).ticks({ interval: 0.2 });
'Radar plot of the of humoral responses after BCG vaccination. Lines represent the Fold Change of Prevacc- 4 months after vaccination.'
.position('center-bottom')
.fontColor('rgb(35,35,35)')
chart.line(data1).name('IgG').markers(true);
chart.line(data2).name('IgA').markers(true);
chart.line(data3).name('IgM').markers(true);
chart.tooltip().format('Value: {%Value}{decimalsCount: 2}');
chart.container('container');