Skip to content

Instantly share code, notes, and snippets.

@ng-the-engineer
Created May 18, 2021 12:02
Show Gist options
  • Select an option

  • Save ng-the-engineer/288859d059bcff9eabe22c1e28632f6d to your computer and use it in GitHub Desktop.

Select an option

Save ng-the-engineer/288859d059bcff9eabe22c1e28632f6d to your computer and use it in GitHub Desktop.
Code snippet of tutorial bubble plot
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