1 Star 0 Fork 2

fyc05/2019-2020上_项目2_在线投票系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
show.php 2.18 KB
一键复制 编辑 原始数据 按行查看 历史
ctx2008 提交于 2019-12-31 07:55 . 最终文件上传
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>数据查看</title>
<script src="js/echarts.min.js"></script>
<script src="js/jquery.1.11.1.js"></script>
<style>
h1 {
text-align: center;
}
#main {
width: 800px;
height: 300px;
margin: 0 auto;
padding: 0px;
}
.main table {
width: 100%
}
#x0,#x1{width: 30px;height: 30px;display: none}
#code{cursor: pointer;}
</style>
</head>
<body>
<h1>车辆票数统计</h1>
<?php
include_once "nav.php";
?>
<!-- 为 ECharts 准备一个具备大小(宽高)的 DOM -->
<div id="main" ></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'));
// 显示标题,图例和空的坐标轴
myChart.setOption({
color:["#3398DB"],
tooltip : {
trigger: 'axis',
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
legend: {
data:['票数']
},
xAxis: {
data: []
},
yAxis: {},
series: [{
name: '票数',
type: 'bar',
data: []
}]
});
$.ajax({
url:"getData.php",
dataType:"JSON",
success:function (d) {
myChart.setOption({
xAxis: {
data: d['categories']
},
series: [{
// 根据名字对应到相应的系列
name: '销量',
data: d['data'],
barWidth: '20%'
}]
});
}
})
/*$.get('data.json').done(function (data) {
// 填入数据
myChart.setOption({
xAxis: {
data: data.categories
},
series: [{
// 根据名字对应到相应的系列
name: '销量',
data: data.data
}]
});
});*/
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fyc5/vote.git
git@gitee.com:fyc5/vote.git
fyc5
vote
2019-2020上_项目2_在线投票系统
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385