
D3
普通网友
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Axes--D3 Interactive Data Visualization for the web
D3's axes are actually functions whose parameters you define. when an axis function is called, it doesn't return a value like scale, but generate the visual elements of the axis, including lines转载 2015-04-29 15:53:23 · 731 阅读 · 0 评论 -
Basic Shapes in SVG
The area of the canvas your document intends to use is called the viewport. lines <line x1="start-x" y1="start-y" x2="end-x" y2="end-y" /> attribute stroke-width转载 2015-05-07 18:01:31 · 790 阅读 · 0 评论 -
Drawing with Data-D3
1. attr() vs. style() attr() sets DOM attribute values, while style() applies CSS styles directly to an element. 2. Recommend using classes for properties that are shared by mulitiple elements,转载 2015-04-28 21:44:08 · 639 阅读 · 0 评论 -
fundamental of D3: Bind Data and element Selection
1. D3 facilitates generation and manipulation of web documents with data. It does this by 1) Loading Data in to the browser's memory 2) Binding data to elements within the document, creating转载 2015-04-28 18:14:37 · 499 阅读 · 0 评论 -
More than you ever wanted to know about GeoJSON
点击打开链接 关于GeoJason很好的介绍文章 Let's look at GeoJSON in a little more depth, from the ground up. Understanding these concepts will help you understand geospatial data in general, too: the转载 2015-05-10 19:22:52 · 1283 阅读 · 0 评论 -
Interactivity--D3
1. event listener: on ("event_name", behavior); commonly, you will want to bind event listeners to more than one element at a time, such as to all of the visual elements in your visualization. Fo转载 2015-04-30 12:10:40 · 599 阅读 · 0 评论 -
Transition: D3 Introduction to interactive data visualization for the web
Dynamic Data 1. Ordinal Scales var xScale = d3.scale.ordinal() // used for ordinal data, typically categories with some inherent order to them .domain(d3.range(dataset转载 2015-04-29 21:25:46 · 559 阅读 · 0 评论 -
D3 scales and colors
By Jerome Cukier 点击打开链接 Scales: the main idea scales transform a number in a certain interval( called domain) into a number in another interval( called range) For instanc转载 2015-05-08 18:43:45 · 1195 阅读 · 0 评论 -
An intro to map from mapschool
点击打开链接 map school What is a map? Until the 1980s, maps were painstaking documents created by hand. These days maps are almost always made with the help of a computer. Maps today are co转载 2015-05-08 22:48:23 · 847 阅读 · 0 评论 -
Understand Selections in D3
1. How Selection works by Mike Bostock note:this is a great work by Mike. Look carefully and assimilate it. 点击打开链接 2. Two Tables Understanding D3 selections转载 2015-05-08 09:39:51 · 432 阅读 · 0 评论 -
Linear Scales-D3: Interactive visualization for the web
Scales are functions that map from an input domain to an output range 1. quantitative scales : continuous domain ordinal scales: discrete domain, such as a set of names or categories转载 2015-04-29 14:09:31 · 738 阅读 · 0 评论 -
Thinking with Joins
点击打开链接 February 5, 2012Mike Bostock Thinking with Joins Say you’re making a basic scatterplot using D3, and you need to create some SVG circle elements to visualize your data. You转载 2015-05-08 08:50:17 · 443 阅读 · 0 评论