- Expert Data Visualization
- Jos Dirksen
- 191字
- 2021-07-09 18:22:40
How does D3 work?
At this point, you should have a working environment, so let's start by looking at some code and see if we can get D3 up and running. As we've mentioned at the beginning of this chapter, D3 is most often used to create and manipulate SVG elements using a data-driven approach. SVG elements can represent shapes, lines, and also allow for grouping. If you need a reference to check what attributes are available for a specific SVG element, the Mozilla Developer Network also has an excellent page on that: https://developer.mozilla.org/en-US/docs/Web/SVG.
In this section, we'll perform the following steps:
- Create and add an empty SVG group (g) element, to which we'll add our data elements.
- Use a JavaScript array that contains some sample data to add rectangles to the SVG element created in the previous step.
- Show how changes in the data can be used to update the drawn rectangles.
- Explain how to handle added and removed data elements using D3.
At the end of these steps, you should have a decent idea of how D3 binds data to elements, and how you can update the bound data.
推薦閱讀
- Clojure Programming Cookbook
- Learning PostgreSQL
- 大學計算機應用基礎實踐教程
- AngularJS Web Application Development Blueprints
- SQL語言從入門到精通
- Python零基礎快樂學習之旅(K12實戰訓練)
- Building Serverless Applications with Python
- ASP.NET程序設計教程
- C語言程序設計實驗指導 (第2版)
- PHP編程基礎與實例教程
- Multithreading in C# 5.0 Cookbook
- Learning Material Design
- Instant Debian:Build a Web Server
- Arduino計算機視覺編程
- Machine Learning for Developers