* Created by Administrator on 2017/8/2.
*/
$(function(){
var options={
chart:{
backgroundColor: 'dark',
},
legend:{
align:'right',
y:40
},
title:{
text:"近一年烟台人口波动",
style:{ "color": "white", "fontSize": "18px" }
},
xAxis:{
title:{
text:null
},
categories: [ '2月', '4月','6月', '8月','10月','12月', '2月'],
crosshair:{
width:2,
color:'green'
},
plotLines: [{
value: 0,
width: 1,
}]
},
yAxis:{
title: {
text:null
},
plotLines: [{
value: 0,
width: 1,
}]
},
tooltip:{
valueSuffix: '万人'
},
series: []
}
var chart = new Highcharts.Chart('chart-peoplechange',options)
$.getJSON("jsonData/chart-peoplechange.json",function(data){
$.each(data,function(i, field){
chart.addSeries({
name:field.name,
data:field.data
});
})
})
})