Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
KenjiKamimoto-ac committed Oct 10, 2022
1 parent 7d2ec61 commit ff5d3e8
Show file tree
Hide file tree
Showing 4 changed files with 183 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/demo_data/vector_animation/echarts-gl.min.js

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions docs/demo_data/vector_animation/echarts.min.js

Large diffs are not rendered by default.

111 changes: 111 additions & 0 deletions docs/demo_data/vector_animation/make_data2.js

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions docs/demo_data/vector_animation/test.html
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>

0 comments on commit ff5d3e8

Please sign in to comment.