blob: e93b0865cce1e2f95995d5d35f85037d23418922 [file] [log] [blame]
option = {
grid: {
left: 0,
bottom: 0,
containLabel: true,
top: 80
},
xAxis: {
type: 'value'
},
yAxis: {
type: 'value',
scale: true
},
toolbox: {
feature: {
dataZoom: {}
}
},
dataZoom: {
type: 'inside'
},
series: []
};
$.get(ROOT_PATH + 'data/asset/data/life-expectancy.json', function (data) {
var series = data.series;
option.visualMap = {
show: false,
min: 0,
max: 100,
dimension: 1
};
option.legend = {
data: data.counties,
selectedMode: 'single',
right: 100
};
data.counties.forEach(function (country) {
var data = series.map(function (yearData) {
var item = yearData.filter(function (item) {
return item[3] === country;
})[0];
return {
label: {
normal: {
show: item[4] % 20 === 0 && item[4] > 1940
},
emphasis: {
position: 'top',
show: true
}
},
name: item[4],
value: item
};
});
var links = data.map(function (item, idx) {
return {
source: idx,
target: idx + 1
};
});
links.pop();
option.series.push({
name: country,
type: 'graph',
coordinateSystem: 'cartesian2d',
data: data,
links: links,
edgeSymbol: ['none', 'arrow'],
edgeSymbolSize: 5,
legendHoverLink: false,
lineStyle: {
normal: {
color: '#333'
}
},
itemStyle: {
normal: {
borderWidth: 1,
borderColor: '#333'
}
},
label: {
normal: {
textStyle: {
color: '#333'
},
position: 'right'
}
},
symbolSize: 10,
animationDelay: function (idx) {
return idx * 100;
}
});
});
myChart.setOption(option);
});