From 40a1b43e75c0c6421a262111fa32d4fe0b807a46 Mon Sep 17 00:00:00 2001 From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com> Date: Wed, 17 Oct 2018 09:40:23 +0530 Subject: [PATCH] Update index.md (#19571) --- .../index.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/data-visualization/data-visualization-with-d3/select-a-group-of-elements-with-d3/index.md b/guide/english/certifications/data-visualization/data-visualization-with-d3/select-a-group-of-elements-with-d3/index.md index 2ba530a6b5..837a2b8b52 100644 --- a/guide/english/certifications/data-visualization/data-visualization-with-d3/select-a-group-of-elements-with-d3/index.md +++ b/guide/english/certifications/data-visualization/data-visualization-with-d3/select-a-group-of-elements-with-d3/index.md @@ -3,8 +3,21 @@ title: Select a Group of Elements with D3 --- ## Select a Group of Elements with D3 -This is a stub. Help our community expand it. +### Hint -This quick style guide will help ensure your pull request gets accepted. +Use the ``` selectAll() ``` method and chain it with the ``` text() ``` method. - +### Solution + +```html + + + + +```