Last active
May 17, 2021 15:34
-
-
Save ng-the-engineer/8b2658fcd8ee802c05920da33f73c941 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
| var myColor = d3 | |
| .scaleOrdinal() | |
| .domain([ | |
| "Javascript", | |
| "Frontend", | |
| "Backend", | |
| "Testing", | |
| "Database", | |
| "Programming Language", | |
| "Version Control", | |
| "mobile", | |
| ]) | |
| .range(d3.schemeSet2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment