- 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.
推薦閱讀
- Java Web開發學習手冊
- 單片機C語言程序設計實訓100例:基于STC8051+Proteus仿真與實戰
- 實戰Java程序設計
- Java 9 Programming Blueprints
- Object-Oriented JavaScript(Second Edition)
- MongoDB權威指南(第3版)
- Learning DHTMLX Suite UI
- Java Web程序設計任務教程
- Clojure Reactive Programming
- Visual FoxPro程序設計習題集及實驗指導(第四版)
- Instant Lucene.NET
- Web性能實戰
- Troubleshooting Citrix XenApp?
- Python趣味創意編程
- Spring Web Services 2 Cookbook