本节记录使用echarts展示柱状图的代码。
1、操作步骤
- 创建一个web工程
- 在webapp下创建以下文件index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Title</title>
<script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js"></script>
</head>
<body>
<button onclick="showcharts()">展示报表</button>
<div id="container" style="min-width:400px;height:400px"></div>
</body>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('container'));
// 指定图表的配置项和数据
var option = {
title: {
text: '第一个 ECharts 实例'
},
tooltip: {},
xAxis: {
data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
},
yAxis: {},
series: [{
name: '销量 百万',
type: 'bar',
data: [820, 932, 901, 934, 1290, 1330]
}]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
function showcharts() {
var x = ['abc', 'efg', 'hij'];
var y = [123, 456, 789];
option.xAxis.data = x;
option.series[0].data = y;
myChart.setOption(option);
}
</script>
</html>
- 把工程在容器中启动,假设端口为8080,则访问 http://localhost:8080/index.html,展示出以下效果:
echarts柱状图
网友评论