- Data Visualization with D3 4.x Cookbook(Second Edition)
- Nick Zhu
- 336字
- 2021-07-09 19:26:20
Selecting multiple elements
Often selecting a single element is not good enough, but rather you want to apply a certain change to a set of elements on the page simultaneously. In this recipe, we will play with the D3 multi-element selector and its selection API.
Getting ready
Open your local copy of the following file in your web browser:
https://github.com/NickQiZhu/d3-cookbook-v2/blob/master/src/chapter2/multiple-selection.html .
How to do it...
This is what the d3.selectAll
function is designed for. In the following code snippet, we will select three different p
elements and enhance them with some CSS classes:
<p></p> <p></p> <p></p> <script type="text/javascript"> d3.selectAll("p") // <-- A .attr("class", "red box"); // <-- B </script>
This code snippet produces the following visual:

Multi-element selection
How it works...
First thing you probably will notice in this example is how similar the usage of D3 selection API is when compared to the single-element version. This is one of the powerful design choices of the D3 selection API. No matter how many elements you target and manipulate, whether one or many, the modifier functions are exactly the same. All the modifier functions we mentioned in the previous section can be applied directly to multi-element selection; in other words, D3 selection is set-based.
Now, with that being said, let's take a closer look at the code example shown in this section, though it is generally pretty simple and self-descriptive. At line A
, the d3.selectAll
function is used to select all the p
elements on the page. The return of this function call is a D3 selection object that contains all the three p
elements. Immediately after that, on line B
, the attr
function was called on this selection to set the class
attribute to red box
for all three p
elements. As shown in this example, the selection and manipulation code are very generic, and will not change even if now we have more than three p
elements on the page. This seems to be an insignificant convenience for now, but in later chapters, we will show how this convenience can make your visualization code simpler and easier to maintain.
- Instant Node Package Manager
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- Beginning Java Data Structures and Algorithms
- 深入淺出Java虛擬機:JVM原理與實戰
- 匯編語言程序設計(第3版)
- 概率成形編碼調制技術理論及應用
- Learning ELK Stack
- 琢石成器:Windows環境下32位匯編語言程序設計
- C++新經典
- 軟件品質之完美管理:實戰經典
- 微服務架構深度解析:原理、實踐與進階
- .NET 4.0面向對象編程漫談:應用篇
- Application Development with Parse using iOS SDK
- PostgreSQL Developer's Guide
- Xamarin Cross-Platform Development Cookbook