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

Commit c60d332

Browse files
nischalduttscissorsneedfoodtoo
authored andcommitted
fix(challenges): add note at bottom of description in d3 challenge
Add a short message in note at bottom of description in d3 challenge ISSUES CLOSED: #17767
1 parent f834a98 commit c60d332

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

challenges/04-data-visualization/data-visualization-with-d3.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1867,7 +1867,8 @@
18671867
"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.",
18681868
"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.",
18691869
"<hr>",
1870-
"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."
1870+
"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.",
1871+
"<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."
18711872
],
18721873
"tests": [
18731874
{

0 commit comments

Comments
 (0)