-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d2ec61
commit ff5d3e8
Showing
4 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" style="height: 100%"> | ||
<head> | ||
<meta charset="utf-8"> | ||
</head> | ||
<body style="height: 100%; margin: 0"> | ||
<div id="container" style="height: 100%"></div> | ||
|
||
<script type="text/javascript" src="echarts.min.js"></script> | ||
<script type="text/javascript" src="echarts-gl.min.js"></script> | ||
<script type="text/javascript" src="make_data2.js"></script> | ||
<script> | ||
var dom = document.getElementById("container"); | ||
var myChart = echarts.init(dom, "dark", { | ||
renderer: "canvas", | ||
useDirtyRect: false | ||
}); | ||
|
||
//console.log(valMin); | ||
myChart.setOption(my_chart_options); | ||
window.addEventListener("resize", myChart.resize); | ||
|
||
|
||
</script> | ||
</body> | ||
</html> |