Created
September 4, 2021 22:09
-
-
Save russelllim22/ce5c3335c2f84d8f769517cade02035b to your computer and use it in GitHub Desktop.
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="plot-wrapper" style="position: relative;"> | |
<svg id="plotSVG" width=700 height=500></svg> | |
<select id="select-y-var" style="position: absolute; top:0px; left:0px;"> | |
<option value="reads" selected>reads</option> | |
<option value="claps">claps</option> | |
<option value="upvotes">fans</option> | |
<option value="views">views</option> | |
<option value="internalReferrerViews">internal views</option> | |
</select> | |
<select id="select-x-var" style="position: absolute; bottom:0px; left: 600px;"> | |
<option value="views" selected>views</option> | |
<option value="claps">claps</option> | |
<option value="upvotes">fans</option> | |
<option value="internalReferrerViews">internal views</option> | |
<option value="reads">reads</option> | |
<option value="firstPublishedAt">date</option> | |
<option value="publication">publication</option> | |
</select> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment