Created
May 18, 2021 12:02
-
-
Save ng-the-engineer/288859d059bcff9eabe22c1e28632f6d to your computer and use it in GitHub Desktop.
Code snippet of tutorial bubble plot
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
| svg | |
| .append("text") | |
| .attr("x", 230) | |
| .attr("y", 420) | |
| .style("text-anchor", "middle") | |
| .text("Last used year"); | |
| svg | |
| .append("text") | |
| .attr("x", -200) | |
| .attr("y", -40) | |
| .attr("transform", "rotate(-90)") | |
| .attr("dy", "1em") | |
| .style("text-anchor", "middle") | |
| .text("Year of experience"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment