关于Echart动态加载legend和series
Posted zy-18
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Echart动态加载legend和series相关的知识,希望对你有一定的参考价值。
1.legend动态加载
动态加载时不能直接对legend赋值。需定义变量构建对象,然后在赋值给option.legend = legend;
legend = { orient: ‘vertical‘, x: ‘left‘, textStyle: { color: "#fff" }, data: [‘最高价(‘ + 10000 + ‘)‘, ‘最低价(‘ + 1000 + ‘)‘] };
2.series动态加载其中的某个对象
series = [{ name: ‘最高价(‘ + 10000+ ‘)‘, type: ‘pie‘, value: b, itemStyle: { normal: { color: "#da2b80" }, emphasis: { color: "#da2b80" } } }, { name: ‘最低价(‘ + 1000+ ‘)‘, type: ‘pie‘, value: c, itemStyle: { normal: { color: "#ffa600" }, emphasis: { color: "#ffa600" } } }]; option.series[0][‘data‘] = series;
以上是关于关于Echart动态加载legend和series的主要内容,如果未能解决你的问题,请参考以下文章