gonito/static/js/years-stats-draw.js

27 lines
789 B
JavaScript
Raw Permalink Normal View History

2017-05-31 23:19:12 +02:00
$.getJSON( "/static/js/years-stats.json").done(function( data ) {
$(function () {
$("#gcontainerX01").highcharts({
title: {
text: ''
},
yAxis: {
title: {
text: ''
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: data
});
});
});