本文主要是介绍45Echarts - 柱状图(World Total Population),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
效果图
源代码
<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>ECharts</title><!-- 引入 echarts.js --><script src="js/echarts.min.js"></script></head><body><!-- 为ECharts准备一个具备大小(宽高)的Dom --><div id="main" style="width: 600px;height:400px;"></div><script type="text/javascript">// 基于准备好的dom,初始化echarts实例var myChart = echarts.init(document.getElementById('main'));var option;option = {title: {text: '世界人口总量',subtext: '数据来自网络'},tooltip: {trigger: 'axis',axisPointer: {type: 'shadow'}},legend: {data: ['2011年', '2012年']},grid: {left: '3%',right: '4%',bottom: '3%',containLabel: true},xAxis: {type: 'value',boundaryGap: [0, 0.01]},yAxis: {type: 'category',data: ['巴西', '印尼', '美国', '印度', '中国', '世界人口(万)']},series: [{name: '2011年',type: 'bar',data: [18203, 23489, 29034, 104970, 131744, 630230]},{name: '2012年',type: 'bar',data: [19325, 23438, 31000, 121594, 134141, 681807]}]};myChart.setOption(option);</script></body></html>
这篇关于45Echarts - 柱状图(World Total Population)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!