From e09481e560afc1ffd5319100cfed29bee1037e4d Mon Sep 17 00:00:00 2001 From: cdrainxv Date: Mon, 13 Feb 2017 14:29:57 -0700 Subject: [PATCH] Edited description on svg origin --- .../04-data-visualization/data-visualization-with-d3.json | 2 +- 1 file changed, 1 insertion(+), 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 2f1b567d2e..6e30f28b05 100644 --- a/challenges/04-data-visualization/data-visualization-with-d3.json +++ b/challenges/04-data-visualization/data-visualization-with-d3.json @@ -775,7 +775,7 @@ ], "description": [ "You may have noticed the bar chart looked like it's upside-down, or inverted. This is because of how SVG uses (x, y) coordinates.", - "In SVG, the origin point for the coordinates is in the upper-left corner. An x coordinate of 0 places a shape on the right edge of the SVG area. A y coordinate of 0 places a shape on the top edge of the SVG area. Higher x values push the rectangle to the right. Higher y values push the rectangle down.", + "In SVG, the origin point for the coordinates is in the upper-left corner. An x coordinate of 0 places a shape on the left edge of the SVG area. A y coordinate of 0 places a shape on the top edge of the SVG area. Higher x values push the rectangle to the right. Higher y values push the rectangle down.", "To make the bars right-side-up, you need to change the way the y coordinate is calculated. It needs to account for both the height of the bar and the total height of the SVG area.", "The height of the SVG area is 100. If you have a data point of 0 in the set, you would want the bar to start at the bottom of the SVG area (not the top). To do this, the y coordinate needs a value of 100. If the data point value were 1, you would start with a y coordinate of 100 to set the bar at the bottom. Then you need to account for the height of the bar of 1, so the final y coordinate would be 99.", "The y coordinate that is y = heightOfSVG - heightOfBar would place the bars right-side-up.",