Skip to content

Instantly share code, notes, and snippets.

@mike-schultz
Created July 5, 2016 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mike-schultz/cc729d6069e641b95be7b4483051c55e to your computer and use it in GitHub Desktop.
Save mike-schultz/cc729d6069e641b95be7b4483051c55e to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="https://cdn.zingchart.com/zingchart.min.js"></script>
</head>
<body>
<div id="myChart"></div>
<script>
var myConfig = {
type: 'line',
series: [{
values: [1,2,3,4,5,6,7,8,9,10]
}]
};
zingchart.render({
id: 'myChart',
data: myConfig,
height: 400,
width: 400
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment