Created
January 18, 2024 18:55
-
-
Save bumbeishvili/6bc1abe212fd6426819b0592862641c8 to your computer and use it in GitHub Desktop.
Usage
This file contains hidden or 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
<div id="graph-container"></div> | |
<script> | |
let dataSample = [ | |
{name:1,value:1}, | |
{name:2,value:2}, | |
] | |
let chart = new Chart() | |
.svgHeight(window.innerHeight - 30) | |
.svgWidth(window.innerWidth - 30) | |
.container("#graph-container") | |
.data(dataSample) | |
.render(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment