ok-admin/pages/chart/chart1.html

47 lines
1.1 KiB
HTML
Raw Normal View History

2019-05-27 01:24:17 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-11-08 15:54:40 +00:00
<meta charset="UTF-8">
<title>柱状图</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="../../lib/loading/okLoading.css"/>
<script type="text/javascript" src="../../lib/loading/okLoading.js"></script>
2019-05-27 01:24:17 +00:00
</head>
<body>
<div id="main" style="width: 100%;height:400px;margin-top: 50px;"></div>
<script src="../../lib/echarts/echarts.min.js"></script>
<script type="text/javascript">
2019-11-08 15:54:40 +00:00
okLoading.close();
// 基于准备好的dom初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
2019-05-27 01:24:17 +00:00
2019-11-08 15:54:40 +00:00
// 指定图表的配置项和数据
var option = {
title: {
text: '衣物销量图'
},
tooltip: {},
legend: {
data: ['销量']
},
xAxis: {
data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
},
yAxis: {},
series: [{
name: '销量',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}]
};
2019-05-27 01:24:17 +00:00
2019-11-08 15:54:40 +00:00
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
window.addEventListener("resize", function () {
myChart.resize();
});
2019-05-27 01:24:17 +00:00
</script>
</body>
</html>