Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
level3-lesson24-diy1
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fc245e3c
authored
Jun 26, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
b7d7c2f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
18 deletions
my_analysis.py
render.html
my_analysis.py
View file @
fc245e3c
...
...
@@ -3,7 +3,7 @@ bar=Bar()
subjects
=
[
"语文"
,
"数学"
,
"英语"
,
"地理"
,
"历史"
,
"政治"
,
"生物"
,
"化学"
,
"物理"
]
scores
=
[
88
,
95
,
96
,
94
,
62
,
66
,
64
,
93
,
89
]
bar
.
add_xaxis
(
subjects
)
bar
.
add_yaxis
(
scores
)
bar
.
add_yaxis
(
"分数"
,
scores
)
bar
.
render
()
render.html
View file @
fc245e3c
...
...
@@ -7,11 +7,11 @@
</head>
<body>
<div
id=
"
a599ef8b974843ccafe6664698ea233e
"
class=
"chart-container"
style=
"width:900px; height:500px;"
></div>
<div
id=
"
5ee57eb95ee5432fbad6e2a99dcd1268
"
class=
"chart-container"
style=
"width:900px; height:500px;"
></div>
<script>
var
chart_
a599ef8b974843ccafe6664698ea233e
=
echarts
.
init
(
document
.
getElementById
(
'
a599ef8b974843ccafe6664698ea233e
'
),
'white'
,
{
renderer
:
'canvas'
});
var
option_
a599ef8b974843ccafe6664698ea233e
=
{
var
chart_
5ee57eb95ee5432fbad6e2a99dcd1268
=
echarts
.
init
(
document
.
getElementById
(
'
5ee57eb95ee5432fbad6e2a99dcd1268
'
),
'white'
,
{
renderer
:
'canvas'
});
var
option_
5ee57eb95ee5432fbad6e2a99dcd1268
=
{
"animation"
:
true
,
"animationThreshold"
:
2000
,
"animationDuration"
:
1000
,
...
...
@@ -46,11 +46,48 @@
"#6950a1"
,
"#918597"
],
"series"
:
[],
"series"
:
[
{
"type"
:
"bar"
,
"name"
:
"\u5206\u6570"
,
"legendHoverLink"
:
true
,
"data"
:
[
88
,
95
,
96
,
94
,
62
,
66
,
64
,
93
,
89
],
"showBackground"
:
false
,
"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"
:
[],
"selected"
:
{}
"data"
:
[
"\u5206\u6570"
],
"selected"
:
{
"\u5206\u6570"
:
true
}
}
],
"tooltip"
:
{
...
...
@@ -92,15 +129,15 @@
}
},
"data"
:
[
88
,
95
,
96
,
94
,
62
,
66
,
64
,
93
,
89
"\u8bed\u6587"
,
"\u6570\u5b66"
,
"\u82f1\u8bed"
,
"\u5730\u7406"
,
"\u5386\u53f2"
,
"\u653f\u6cbb"
,
"\u751f\u7269"
,
"\u5316\u5b66"
,
"\u7269\u7406"
]
}
],
...
...
@@ -128,7 +165,7 @@
}
]
};
chart_
a599ef8b974843ccafe6664698ea233e
.
setOption
(
option_a599ef8b974843ccafe6664698ea233e
);
chart_
5ee57eb95ee5432fbad6e2a99dcd1268
.
setOption
(
option_5ee57eb95ee5432fbad6e2a99dcd1268
);
</script>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment