Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
fix(challenges): add note at bottom of description in d3 challenge
Browse files Browse the repository at this point in the history
Add a short message in note at bottom of description in d3 challenge

ISSUES CLOSED: #17767
  • Loading branch information
nischaldutt authored and scissorsneedfoodtoo committed Sep 4, 2018
1 parent f834a98 commit c60d332
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -1867,7 +1867,8 @@
"A scatter plot is another type of visualization. It usually uses circles to map data points, which have two values each. These values tie to the <code>x</code> and <code>y</code> axes, and are used to position the circle in the visualization.",
"SVG has a <code>circle</code> tag to create the circle shape. It works a lot like the <code>rect</code> elements you used for the bar chart.",
"<hr>",
"Use the <code>data()</code>, <code>enter()</code>, and <code>append()</code> methods to bind <code>dataset</code> to new <code>circle</code> elements that are appended to the SVG canvas."
"Use the <code>data()</code>, <code>enter()</code>, and <code>append()</code> methods to bind <code>dataset</code> to new <code>circle</code> elements that are appended to the SVG canvas.",
"<strong>Note</strong><br>The circles won't be visible because we haven't set their attributes yet. We'll do that in the next challenge."
],
"tests": [
{
Expand Down

0 comments on commit c60d332

Please sign in to comment.