Commit 3e6f936a by BellCodeEditor

auto save

parent 31d76a2f
Showing with 198 additions and 5 deletions
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Awesome-pyecharts</title>
<script type="text/javascript" src="https://assets.pyecharts.org/assets/echarts.min.js"></script>
</head>
<body>
<div id="72ea841f39e249d9ab693e2274328a4b" class="chart-container" style="width:900px; height:500px;"></div>
<script>
var chart_72ea841f39e249d9ab693e2274328a4b = echarts.init(
document.getElementById('72ea841f39e249d9ab693e2274328a4b'), 'white', {renderer: 'canvas'});
var option_72ea841f39e249d9ab693e2274328a4b = {
"animation": true,
"animationThreshold": 2000,
"animationDuration": 1000,
"animationEasing": "cubicOut",
"animationDelay": 0,
"animationDurationUpdate": 300,
"animationEasingUpdate": "cubicOut",
"animationDelayUpdate": 0,
"color": [
"#c23531",
"#2f4554",
"#61a0a8",
"#d48265",
"#749f83",
"#ca8622",
"#bda29a",
"#6e7074",
"#546570",
"#c4ccd3",
"#f05b72",
"#ef5b9c",
"#f47920",
"#905a3d",
"#fab27b",
"#2a5caa",
"#444693",
"#726930",
"#b2d235",
"#6d8346",
"#ac6767",
"#1d953f",
"#6950a1",
"#918597"
],
"series": [
{
"type": "bar",
"name": "\u671f\u4e2d",
"legendHoverLink": true,
"data": [
92,
95,
82,
88
],
"showBackground": false,
"barWidth": 40,
"barMinHeight": 0,
"barCategoryGap": "20%",
"barGap": "30%",
"large": false,
"largeThreshold": 400,
"seriesLayoutBy": "column",
"datasetIndex": 0,
"clip": true,
"zlevel": 0,
"z": 2,
"label": {
"show": true,
"position": "top",
"margin": 8
}
},
{
"type": "bar",
"name": "\u671f\u672b",
"legendHoverLink": true,
"data": [
95,
79,
93,
90
],
"showBackground": false,
"barWidth": 40,
"barMinHeight": 0,
"barCategoryGap": "20%",
"barGap": "30%",
"large": false,
"largeThreshold": 400,
"seriesLayoutBy": "column",
"datasetIndex": 0,
"clip": true,
"zlevel": 0,
"z": 2,
"label": {
"show": true,
"position": "top",
"margin": 8
}
}
],
"legend": [
{
"data": [
"\u671f\u4e2d",
"\u671f\u672b"
],
"selected": {
"\u671f\u4e2d": true,
"\u671f\u672b": true
}
}
],
"tooltip": {
"show": true,
"trigger": "item",
"triggerOn": "mousemove|click",
"axisPointer": {
"type": "line"
},
"showContent": true,
"alwaysShowContent": false,
"showDelay": 0,
"hideDelay": 100,
"textStyle": {
"fontSize": 14
},
"borderWidth": 0,
"padding": 5
},
"xAxis": [
{
"show": true,
"scale": false,
"nameLocation": "end",
"nameGap": 15,
"gridIndex": 0,
"inverse": false,
"offset": 0,
"splitNumber": 5,
"minInterval": 0,
"splitLine": {
"show": false,
"lineStyle": {
"show": true,
"width": 1,
"opacity": 1,
"curveness": 0,
"type": "solid"
}
},
"data": [
"\u6d48\u6d48",
"\u806a\u806a",
"\u5c0f\u667a",
"\u6ce2\u5947"
]
}
],
"yAxis": [
{
"show": true,
"scale": false,
"nameLocation": "end",
"nameGap": 15,
"gridIndex": 0,
"inverse": false,
"offset": 0,
"splitNumber": 5,
"minInterval": 0,
"splitLine": {
"show": false,
"lineStyle": {
"show": true,
"width": 1,
"opacity": 1,
"curveness": 0,
"type": "solid"
}
}
}
]
};
chart_72ea841f39e249d9ab693e2274328a4b.setOption(option_72ea841f39e249d9ab693e2274328a4b);
</script>
</body>
</html>
from pyecharts.charts import Bar
subjects = ["浈浈", "聪聪", "小智", "波奇"]
subjects = ["浈浈", "聪聪", "小智", "波奇"] # 名单列表
scores1 = [92, 95, 82, 88] # 期中成绩
scores2 = [95, 79, 93, 90] # 期末成绩
# 创建柱状图对象
bar = Bar()
bar = Bar() # Bar()方法赋值给变量bar
# 传入数值
bar.add_xaxis(subjects)
bar.add_xaxis(subjects) # bar.add_xaxis()方法参数为名单列表名
# bar.add_yaxis()方法参1期中参2期中成绩列表名参3柱形图宽度设为40
bar.add_yaxis("期中", scores1, bar_width=40)
# bar.add_yaxis()方法参1期末参2期末成绩列表名参3柱形图宽度设为40
bar.add_yaxis("期末", scores2, bar_width=40)
# 保存到本地文件
bar.render("analysis.html")
\ No newline at end of file
bar.render("analysis.html") # bar.render()方法参数为文件名(字符串的格式)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment