Scripts inclusion
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>JavaScript Surface Chart</title> | |
<script src="https://cdn.anychart.com/releases/8.10.0/js/anychart-core.min.js"></script> | |
<script src="https://cdn.anychart.com/releases/8.10.0/js/anychart-surface.min.js"></script> | |
<script src="https://cdn.anychart.com/releases/8.10.0/js/anychart-data-adapter.min.js"></script> | |
<style type="text/css"> | |
html, body, #container { | |
width: 100%; height: 100%; margin: 0; padding: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="container"></div> | |
<script> | |
// All the code for the JS Surface Chart will come here | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment