码迷,mamicode.com
首页 > 其他好文 > 详细

Echarts学习求教

时间:2016-03-08 16:39:16      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

有没有人用过百度的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学习求教

标签:

原文地址:http://www.cnblogs.com/penglinjiang/p/5254294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!