zhenxun_bot/resources/template/bar_chart/main.html

108 lines
2.9 KiB
HTML
Raw Normal View History

2024-08-25 00:02:35 +08:00
<!DOCTYPE html>
<html>
2024-09-29 17:00:31 +08:00
2024-08-25 00:02:35 +08:00
<head>
<meta charset="utf-8">
<title>ECharts Example</title>
<!-- 引入ECharts -->
<script src="https://cdn.bootcss.com/echarts/4.2.1/echarts.min.js"></script>
<link rel="stylesheet" href="main.css">
</head>
2024-09-29 17:00:31 +08:00
2024-08-25 00:02:35 +08:00
<body>
<!-- 图表容器 -->
<div class="container">
<div id="main" style="height: 1000px; width: 1000px;">
</div>
</div>
2024-09-29 17:00:31 +08:00
2024-08-25 00:02:35 +08:00
<script type="text/javascript">
// 基于准备好的dom初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
2024-09-29 17:00:31 +08:00
2024-08-25 00:02:35 +08:00
// 指定图表的配置项和数据
var option = {
title: {
text: {{data.title | tojson}},
left: 'center',
top: 'top',
textStyle: {
color: '#333',
fontSize: 24
}
},
graphic: {
type: 'image',
id: 'background',
left: 0,
top: 0,
z: -10,
bounding: 'raw',
origin: [0, 0],
},
2024-08-25 00:02:35 +08:00
xAxis: {
type: 'value',
boundaryGap: [0, 0.01]
},
yAxis: {
type: 'category',
data: {{data.category_data | tojson}}
2024-08-25 00:02:35 +08:00
},
2024-09-29 17:00:31 +08:00
series: [{
data: {{data.data | tojson}},
2024-09-29 17:00:31 +08:00
type: 'bar',
label: {
show: true, // 显示标签
position: 'right', // 数字显示在柱子上方
formatter: '{c}' // 显示数值
},
2024-09-29 17:00:31 +08:00
itemStyle: {
// 为每个柱子设置随机颜色
color: function () {
// 生成一个随机颜色
return 'rgb(' +
Math.round(Math.random() * 255) + ',' +
Math.round(Math.random() * 255) + ',' +
Math.round(Math.random() * 255) + ')';
}
2024-08-25 00:02:35 +08:00
}
2024-09-29 17:00:31 +08:00
}]
};
2024-08-25 00:02:35 +08:00
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
2024-09-29 17:00:31 +08:00
</html>
<style>
.container {
position: relative;
width: 1000px;
height: 1000px;
overflow: hidden;
}
.container::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url({{data.background_image|tojson}});
background-repeat: no-repeat;
background-size: 100% 100%;
background-size: cover;
filter: blur(5px);
z-index: -1;
}
#main {
position: relative;
z-index: 1;
/* 其他内容样式 */
}
</style>