From c60d332f28d311a608dfed4a3120e2e9f7be76ff Mon Sep 17 00:00:00 2001 From: Nischal Dutt Date: Fri, 17 Aug 2018 22:20:26 +0530 Subject: [PATCH] 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 --- .../04-data-visualization/data-visualization-with-d3.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/challenges/04-data-visualization/data-visualization-with-d3.json b/challenges/04-data-visualization/data-visualization-with-d3.json index b04436c3f0..b833335e2c 100644 --- a/challenges/04-data-visualization/data-visualization-with-d3.json +++ b/challenges/04-data-visualization/data-visualization-with-d3.json @@ -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 x and y axes, and are used to position the circle in the visualization.", "SVG has a circle tag to create the circle shape. It works a lot like the rect elements you used for the bar chart.", "
", - "Use the data(), enter(), and append() methods to bind dataset to new circle elements that are appended to the SVG canvas." + "Use the data(), enter(), and append() methods to bind dataset to new circle elements that are appended to the SVG canvas.", + "Note
The circles won't be visible because we haven't set their attributes yet. We'll do that in the next challenge." ], "tests": [ {