Echarts学习求教
Posted wz_software
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Echarts学习求教相关的知识,希望对你有一定的参考价值。
有没有人用过百度的Echarts?刚开始接触,下面这段代码怎么理解啊,新手求指教:
myChart.showLoading();
$.get(‘data/asset/data/les-miserables.gexf‘, function (xml) {
myChart.hideLoading();
var graph = echarts.dataTool.gexf.parse(xml);
var categories = [];
for (var i = 0; i < 9; i++) {
categories[i] = {
name: ‘类目‘ + i
};
}
graph.nodes.forEach(function (node) {
node.itemStyle = null;
node.value = node.symbolSize;
node.label = {
normal: {
show: node.symbolSize > 30
}
};
node.category = node.attributes.modularity_class;
});
以上是关于Echarts学习求教的主要内容,如果未能解决你的问题,请参考以下文章