# API--中文手冊
> [Wiki](%E4%B8%BB%E9%A1%B5) ? **API--中文手冊**
- 本文檔是D3官方文檔中文翻譯,并保持與[最新版](https://github.com/mbostock/d3/wiki/API-Reference)同步。
- 如發現翻譯不當或有其他問題可以通過以下方式聯系譯者:
- 郵箱:zhang\_tianxu@sina.com
- QQ群:[D3數據可視化](http://jq.qq.com/?_wv=1027&k=ZGcqYF)205076374,[大數據可視化](http://jq.qq.com/?_wv=1027&k=S8wGMe)436442115
D3庫中所有函數都在“d3”命名空間內。
D3 使用[語義版本命名](http://semver.org)。 你可以使用“d3.version”查看D3的最新版本
D3 API總覽
- [行為](#d3behavior-behaviors) - 可重用的交互行為。
- [核心](#d3-core) - 包括選擇器,過渡,數據處理,本地化,顏色等。
- [地理](#d3geo-geography) - 球面坐標,經緯度運算。
- [幾何](#d3geom-geometry) - 提供繪制2D幾何圖形的實用工具。
- [布局](#d3layout-%E5%B8%83%E5%B1%80) - 推導定位元素的輔助數據。
- [比例尺](#user-content-d3scale-%E6%AF%94%E4%BE%8B%E5%B0%BA) - 數據編碼和視覺編碼之間轉換。
- [可縮放矢量圖形](#d3svg-svg) - 提供用于創建可伸縮矢量圖形的實用工具。
- [時間](#d3time-time) - 解析或格式化時間,計算日歷的時間間隔等。
## [d3 (核心函數)](%E6%A0%B8%E5%BF%83%E5%87%BD%E6%95%B0)
### [選擇](%E9%80%89%E6%8B%A9%E5%99%A8)
- [d3.event](Xuan%20Ze%20Qi%20.html#d3_event) - 訪問用于交互的當前用戶事件。
- [d3.mouse](Xuan%20Ze%20Qi%20.html#d3_mouse) - 獲取相對于指定容器的鼠標位置。
- [d3.select](Xuan%20Ze%20Qi%20.html#d3_select) - 從當前文檔中選擇一個元素。
- [d3.selectAll](Xuan%20Ze%20Qi%20.html#d3_selectAll) - 從當前文檔中選擇多個元素。
- [d3.selection](Xuan%20Ze%20Qi%20.html#d3_selection) - 增強選擇器原型,或測試實例類型。
- [d3.touch](Xuan%20Ze%20Qi%20.html#d3_touch) - 獲取相對于指定容器的單點觸摸位置。
- [d3.touches](Xuan%20Ze%20Qi%20.html#d3_touches) - 獲取相對于指定容器的多點觸摸位置。
- [selection.append](Xuan%20Ze%20Qi%20.html#append) - 創建并追加一個新元素。
- [selection.attr](Xuan%20Ze%20Qi%20.html#attr) - 取得或設置屬性的值。
- [selection.call](Xuan%20Ze%20Qi%20.html#user-content-selectioncallfunction-arguments) - 為當前選擇調用一個函數。
- [selection.classed](Xuan%20Ze%20Qi%20.html#classed) - 添加或移除CSS類。
- [selection.data](Xuan%20Ze%20Qi%20.html#data) - 在計算相關的連接時,取得或設置一組元素的數據。
- [selection.datum](Xuan%20Ze%20Qi%20.html#datum) - 取得或設置單個元素的數據,不必計算連接。
- [selection.each](Xuan%20Ze%20Qi%20.html#each) - 為每個選中的元素調用一個函數。
- [selection.empty](Xuan%20Ze%20Qi%20.html#empty) - 如果選擇是空則返回true。
- [selection.enter](Xuan%20Ze%20Qi%20.html#enter) - 為缺失的元素返回占位符。
- [selection.exit](Xuan%20Ze%20Qi%20.html#exit) - 返回不再需要的元素。
- [selection.filter](Xuan%20Ze%20Qi%20.html#filter) - 基于數據過濾選擇。
- [selection.html](Xuan%20Ze%20Qi%20.html#html) - 取得或設置innerHTML內容。
- [selection.insert](Xuan%20Ze%20Qi%20.html#insert) - 在已存在元素之前創建并插入一個元素。
- [selection.interrupt](Xuan%20Ze%20Qi%20.html#interrupt) - 如果有過渡的話,立即中斷當前的過渡。
- [selection.node](Xuan%20Ze%20Qi%20.html#node) - 返回選擇中的第一個節點。
- [selection.on](Xuan%20Ze%20Qi%20.html#on) - 為交互添加或移除事件監聽器。
- [selection.order](Xuan%20Ze%20Qi%20.html#order) - 重排列文檔中的元素,以匹配選擇。
- [selection.property](Xuan%20Ze%20Qi%20.html#property) - 取得或設置行內屬性。
- [selection.remove](Xuan%20Ze%20Qi%20.html#remove) - 從當前文檔中移除當前元素。
- [selection.select](Xuan%20Ze%20Qi%20.html#select) - 為每個選中元素的在選擇一個后代元素。
- [selection.selectAll](Xuan%20Ze%20Qi%20.html#selectAll) - 為每個選中元素的在選擇多個后代元素。
- [selection.size](Xuan%20Ze%20Qi%20.html#size) - 返回選擇中的元素數。
- [selection.sort](Xuan%20Ze%20Qi%20.html#sort) - 基于數據排列文檔中的元素。
- [selection.style](Xuan%20Ze%20Qi%20.html#style) - 取得或設置樣式屬性。
- [selection.text](Xuan%20Ze%20Qi%20.html#text) - 取得或設置文本內容。
- [selection.transition](Xuan%20Ze%20Qi%20.html#transition) - 在選中元素上開啟過渡。
### [過渡](%E8%BF%87%E6%B8%A1)
- [d3.ease](Guo%20Du%20.html#d3_ease) - 自定義過渡時間。
- [d3.timer](Guo%20Du%20.html#d3_timer) - 開啟一段自定義動畫定時器。
- [d3.interpolate](Guo%20Du%20.html#d3_interpolate) - 插補兩個值。
- [d3.interpolateArray](Guo%20Du%20.html#d3_interpolateArray) - 插補兩個數組。
- [d3.interpolateHcl](Guo%20Du%20.html#d3_interpolateHcl) - 插補兩個HCL顏色值。
- [d3.interpolateHsl](Guo%20Du%20.html#d3_interpolateHsl) - 插補兩個HSL顏色值。
- [d3.interpolateLab](Guo%20Du%20.html#d3_interpolateLab) - 插補兩個L\*a\*b\*顏色值。
- [d3.interpolateNumber](Guo%20Du%20.html#d3_interpolateNumber) - 插補兩個數字值。
- [d3.interpolateObject](Guo%20Du%20.html#d3_interpolateObject) - 插補兩個任意對象。
- [d3.interpolateRgb](Guo%20Du%20.html#d3_interpolateRgb) - 插補兩個RGB顏色值。
- [d3.interpolateRound](Guo%20Du%20.html#d3_interpolateRound) - 插補兩個整數。
- [d3.interpolateString](Guo%20Du%20.html#d3_interpolateString) - 插補兩個字符串。
- [d3.interpolateTransform](Guo%20Du%20.html#d3_interpolateTransform) - 插補兩個2D矩陣變換。
- [d3.interpolateZoom](Guo%20Du%20.html#d3_interpolateZoom) - 在兩個點之間平滑地縮放平移。
- [d3.interpolators](Guo%20Du%20.html#d3_interpolators) - 注冊一個自定義的插值器。
- [d3.timer.flush](Guo%20Du%20.html#d3_timer_flush) - 立即執行一個0延遲的定時器。
- [d3.transition](Guo%20Du%20.html#d3_transition) - 開啟一個動畫過渡。
- [ease](Guo%20Du%20.html#_ease) - 一個參數化的緩動函數。
- [interpolate](Guo%20Du%20.html#_interpolate) - 一個參數化的插值器函數。
- [transition.attr](Guo%20Du%20.html#attr) - 平滑地過渡到一個新的屬性值。
- [transition.attrTween](Guo%20Du%20.html#attrTween) - 在兩個屬性值之間平滑地過渡。
- [transition.call](Guo%20Du%20.html#call) - 為當前的過渡調用一個函數。
- [transition.delay](Guo%20Du%20.html#delay) - 指定每個元素的延遲時間(以毫秒為單位)。
- [transition.duration](Guo%20Du%20.html#duration) - 指定每個元素的持續時間(以毫秒為單位)。
- [transition.each](Guo%20Du%20.html#each) - 為過渡結束時間添加一個監聽器。
- [transition.ease](Guo%20Du%20.html#ease) - 指定一個過渡的緩動函數。
- [transition.empty](Guo%20Du%20.html#empty) - 如果過渡是空則返回true。
- [transition.filter](Guo%20Du%20.html#filter) - 基于數據過濾一個過渡。
- [transition.node](Guo%20Du%20.html#node) - 返回過渡中的第一個節點。
- [transition.remove](Guo%20Du%20.html#remove) - 在過渡的最后移除選中的元素。
- [transition.select](Guo%20Du%20.html#select) - 為每個選中的元素在一個子元素開啟一段過渡。
- [transition.selectAll](Guo%20Du%20.html#selectAll) - 為每個選中的元素在多個子元素開啟一段過渡。
- [transition.size](Guo%20Du%20.html#size) - 返回在選擇中元素的數量。
- [transition.style](Guo%20Du%20.html#style) - 平滑地過渡到一個新的樣式值。
- [transition.styleTween](Guo%20Du%20.html#styleTween) - 在兩個樣式屬性值之間平滑地過渡。
- [transition.text](Guo%20Du%20.html#text) - 在過渡開始時設置文本內容。
- [transition.transition](Guo%20Du%20.html#transition) - 當這次過渡結束時,在相同的元素上開啟另一段過渡。
- [transition.tween](Guo%20Du%20.html#tween) - 指定一個自定義的補間操作符作為過渡的一部分運行。
### [數組](%E6%95%B0%E7%BB%84)
- [d3.ascending](Shu%20Zu%20.html#d3_ascending) - 為排序比較兩個值。
- [d3.bisectLeft](Shu%20Zu%20.html#d3_bisectLeft) - 在排序數組中檢索值。
- [d3.bisector](Shu%20Zu%20.html#d3_bisector) - 二等分使用訪問器或比較器。
- [d3.bisectRight](Shu%20Zu%20.html#d3_bisectRight) - 在排序數組中檢索值。
- [d3.bisect](Shu%20Zu%20.html#d3_bisect) - 在排序數組中檢索值。
- [d3.descending](Shu%20Zu%20.html#d3_descending) - 為排序比較兩個值。
- [d3.deviation](Shu%20Zu%20.html#d3_deviation) - 計算一組數據的標準差。
- [d3.entries](Shu%20Zu%20.html#d3_entries) - 列出一個關聯數組的鍵值對實體。
- [d3.extent](Shu%20Zu%20.html#d3_extent) - 找出一個數組中的最大值和最小值。
- [d3.keys](Shu%20Zu%20.html#d3_keys) - 列出一個關聯數組中的鍵。
- [d3.map](Shu%20Zu%20.html#d3_map) - 構建一個新的map。
- [d3.max](Shu%20Zu%20.html#d3_max) - 找出一個數組中的最大值。
- [d3.mean](Shu%20Zu%20.html#d3_mean) - 計算一組數據的算數平均值。
- [d3.median](Shu%20Zu%20.html#d3_median) - 計算一組數據的算數中值。
- [d3.merge](Shu%20Zu%20.html#d3_merge) - 合并多個數組為一個數組。
- [d3.min](Shu%20Zu%20.html#d3_min) - 找出一個數組中的最小值。
- [d3.nest](Shu%20Zu%20.html#d3_nest) - 分層地分組數組元素。
- [d3.pairs](Shu%20Zu%20.html#d3_pairs) - 返回一個元素的相鄰對數組。
- [d3.permute](Shu%20Zu%20.html#d3_permute) - 按照數組的索引重新排序數組元素。
- [d3.quantile](Shu%20Zu%20.html#d3_quantile) - 為一個排好序的數字數組的分位數。
- [d3.range](Shu%20Zu%20.html#d3_range) - 產生一系列的數值。
- [d3.set](Shu%20Zu%20.html#d3_set) - 構建一個新的集合。
- [d3.shuffle](Shu%20Zu%20.html#d3_shuffle) - 隨機化一個數組的順序。
- [d3.sum](Shu%20Zu%20.html#d3_sum) - 計算數字數組的和。
- [d3.transpose](Shu%20Zu%20.html#d3_transpose) - 轉置一個數組的數組。
- [d3.values](Shu%20Zu%20.html#d3_values) - 列出關聯數組的值。
- [d3.variance](Shu%20Zu%20.html#d3_variance) - 計算數字數組的方差。
- [d3.zip](Shu%20Zu%20.html#d3_zip) - 轉置數組的可變數量。
- [map.empty](Shu%20Zu%20.html#map_empty) - 如果map不包含元素就返回true。
- [map.entries](Shu%20Zu%20.html#map_entries) - 返回map的實體數組。
- [map.forEach](Shu%20Zu%20.html#map_forEach) - 為每個指定的實體調用一個函數。
- [map.get](Shu%20Zu%20.html#map_get) - 為指定的鍵返回值。
- [map.has](Shu%20Zu%20.html#map_has) - 如果map包含指定的值則返回true。
- [map.keys](Shu%20Zu%20.html#map_keys) - 返回map的鍵數組。
- [map.remove](Shu%20Zu%20.html#map_remove) - 為指定的鍵移除值。
- [map.set](Shu%20Zu%20.html#map_set) - 為指定的鍵設置值。
- [map.size](Shu%20Zu%20.html#map_size) - 返回map的實體數量。
- [map.values](Shu%20Zu%20.html#map_values) - 返回map的值數組。
- [nest.entries](Shu%20Zu%20.html#nest_entries) - 返回一組鍵-值元組
- [nest.key](Shu%20Zu%20.html#nest_key) - 在嵌套層級中添加一個級別。
- [nest.map](Shu%20Zu%20.html#nest_map) - 返回一個關聯數組。
- [nest.rollup](Shu%20Zu%20.html#nest_rollup) - 為葉子值指定一個匯總函數。
- [nest.sortKeys](Shu%20Zu%20.html#nest_sortKeys) - 按照鍵排序葉子嵌套級別。
- [nest.sortValues](Shu%20Zu%20.html#nest_sortValues) - 按照值排序葉子嵌套級別。
- [set.add](Shu%20Zu%20.html#set_add) - 添加指定的值。
- [set.empty](Shu%20Zu%20.html#set_empty) - 如果集合不含元素的話返回true。
- [set.forEach](Shu%20Zu%20.html#set_forEach) - 為集合中的每個元素調用指定的函數。
- [set.has](Shu%20Zu%20.html#set_has) - 如果集合中包含指定值就返回true。
- [set.remove](Shu%20Zu%20.html#set_remove) - 移除指定的值。
- [set.size](Shu%20Zu%20.html#set_size) - 返回集合中的元素數量。
- [set.values](Shu%20Zu%20.html#set_values) - 返回集合中的值數組。
### [數學](%E6%95%B0%E5%AD%A6)
- [d3.random.bates](Shu%20Xue%20.html#random_bates) - 生成具有貝茨分布規律的隨機數。
- [d3.random.irwinHall](Shu%20Xue%20.html#random_irwinHall) - 生成具有Irwin–Hall分布規律的隨機數。
- [d3.random.logNormal](Shu%20Xue%20.html#random_logNormal) - 生成具有對數正態分布規律的隨機數。
- [d3.random.normal](Shu%20Xue%20.html#random_normal) - 生成具有正態分布規律的隨機數。
- [d3.transform](Shu%20Xue%20.html#d3_transform) - 計算2D仿射變換的標準形式。
### [請求](%E8%AF%B7%E6%B1%82)
- [d3.csv](Qing%20Qiu%20.html#csv) - 請求一個CSV(逗號分隔值)的文件。
- [d3.html](Qing%20Qiu%20.html#d3_html) - 請求一個HTML文檔片段。
- [d3.json](Qing%20Qiu%20.html#d3_json) - 請求一個JSON對象。
- [d3.text](Qing%20Qiu%20.html#d3_text) - 請求一個text文件。
- [d3.tsv](Qing%20Qiu%20.html#tsv) - 請求一個TSV(制表符分隔值)的文件。
- [d3.xhr](Qing%20Qiu%20.html#d3_xhr) - 使用XMLHttpRequest請求一個資源。
- [d3.xml](Qing%20Qiu%20.html#d3_xml) - 請求一個XML文檔片段。
- [xhr.abort](Qing%20Qiu%20.html#abort) - 終止未完成的請求。
- [xhr.get](Qing%20Qiu%20.html#get) - 發送一個GET請求。
- [xhr.header](Qing%20Qiu%20.html#header) - 設置一個請求頭。
- [xhr.mimeType](Qing%20Qiu%20.html#mimeType) - 設置一個接受請求頭并覆蓋響應的MIME類型。
- [xhr.on](Qing%20Qiu%20.html#on) - 為“progress”,“load”或“error”事件添加一個事件監聽器。
- [xhr.post](Qing%20Qiu%20.html#post) - 發送一個POST請求。
- [xhr.response](Qing%20Qiu%20.html#response) - 設置一個響應映射函數。
- [xhr.send](Qing%20Qiu%20.html#send) - 使用指定的數據和函數發送一個請求。
### [格式化](%E6%A0%BC%E5%BC%8F%E5%8C%96)
- [d3.format](Ge%20Shi%20Hua%20.html#d3_format) - 將一個數組格式化為字符串。
- [d3.formatPrefix](Ge%20Shi%20Hua%20.html#d3_formatPrefix) - 為指定的值和精度返回[SI 前綴](http://en.wikipedia.org/wiki/Metric_prefix)。
- [d3.requote](Ge%20Shi%20Hua%20.html#d3_requote) - 將字符串轉義為正則表達式。
- [d3.round](Ge%20Shi%20Hua%20.html#d3_round) - 將值四舍五入到指定小數位。
### [CSV格式化(d3.csv)](CSV%E6%A0%BC%E5%BC%8F%E5%8C%96)
- [d3.csv.formatRows](CSVGe%20Shi%20Hua%20.html#formatRows) - 格式化一組元組為CSV字符串。
- [d3.csv.format](CSVGe%20Shi%20Hua%20.html#format) - 格式化一組對象為CSV字符串。
- [d3.csv.parseRows](CSVGe%20Shi%20Hua%20.html#parseRows) - 解析CSV字符串為元組,忽略首行。
- [d3.csv.parse](CSVGe%20Shi%20Hua%20.html#parse) - 把首行數據CSV字符串解析為對象。
- [d3.csv](CSVGe%20Shi%20Hua%20.html#csv) - 請求一個CSV文件。
- [d3.dsv](CSVGe%20Shi%20Hua%20.html#dsv) - 為指定的分隔符和mime類型創建一個解析器/格式化器。
- [d3.tsv.formatRows](CSVGe%20Shi%20Hua%20.html#tsv_formatRows) - 格式化一組元組為TSV字符串。
- [d3.tsv.format](CSVGe%20Shi%20Hua%20.html#tsv_format) - 格式化一組對象為TSV字符串。
- [d3.tsv.parseRows](CSVGe%20Shi%20Hua%20.html#tsv_parseRows) - 解析TSV字符串為元組,忽略首行。
- [d3.tsv.parse](CSVGe%20Shi%20Hua%20.html#tsv_parse) - 把首行數據TSV字符串解析為對象。
- [d3.tsv](CSVGe%20Shi%20Hua%20.html#tsv) - 請求一個TSV文件。
### [本地化](%E6%9C%AC%E5%9C%B0%E5%8C%96)
- [d3.locale](Ben%20Di%20Hua%20.html#d3_locale) - 使用指定的字符串創建一個本地化。
- [locale.numberFormat](Ben%20Di%20Hua%20.html#locale_numberFormat) - 創建一個新的數字格式化器。
- [locale.timeFormat](Ben%20Di%20Hua%20.html#locale_timeFormat) - 創建一個新的時間格式化器/解析器。
### [顏色](%E9%A2%9C%E8%89%B2)
- [d3.hcl](Yan%20Se%20.html#d3_hcl) - 指定一種顏色,創建一個HCL顏色對象。
- [d3.hsl](Yan%20Se%20.html#d3_hsl) - 指定一種顏色,創建一個HSL顏色對象。
- [d3.lab](Yan%20Se%20.html#d3_lab) - 指定一種顏色,創建一個L\*a\*b\*顏色對象。
- [d3.rgb](Yan%20Se%20.html#d3_rgb) - 指定一種顏色,創建一個RGB顏色對象。
- [hcl.brighter](Yan%20Se%20.html#hcl_brighter) - 增強顏色的亮度,變化幅度由參數決定。
- [hcl.darker](Yan%20Se%20.html#hcl_darker) - 減弱顏色的亮度,變化幅度由參數決定。
- [hcl.rgb](Yan%20Se%20.html#hcl_rgb) - 將HCL顏色對象轉化成RGB顏色對象。
- [hcl.toString](Yan%20Se%20.html#hcl_toString) - HCL顏色對象轉化為字符串格式。
- [hsl.brighter](Yan%20Se%20.html#hsl_brighter) - 增強顏色的亮度,變化幅度由參數決定。
- [hsl.darker](Yan%20Se%20.html#hsl_darker) - 減弱顏色的亮度,變化幅度由參數決定。
- [hsl.rgb](Yan%20Se%20.html#hsl_rgb) - 將HSL顏色對象轉化成RGB顏色對象。
- [hsl.toString](Yan%20Se%20.html#hsl_toString) - 將HSL顏色對象轉化為字符串格式。
- [lab.brighter](Yan%20Se%20.html#lab_brighter) - 增強顏色的亮度,變化幅度由參數決定。
- [lab.darker](Yan%20Se%20.html#lab_darker) - 減弱顏色的亮度,變化幅度由參數決定。
- [lab.rgb](Yan%20Se%20.html#lab_rgb) - 將L\*a\*b\*顏色對象轉化成RGB顏色對象。
- [lab.toString](Yan%20Se%20.html#lab_toString) - 將L\*a\*b\*顏色對象轉化為字符串格式。
- [rgb.brighter](Yan%20Se%20.html#rgb_brighter) - 增強顏色的亮度,變化幅度由參數決定。
- [rgb.darker](Yan%20Se%20.html#rgb_darker) - 減弱顏色的亮度,變化幅度由參數決定。
- [rgb.hsl](Yan%20Se%20.html#rgb_hsl) - 將RGB顏色對象轉化成HSL顏色對象。
- [rgb.toString](Yan%20Se%20.html#rgb_toString) - 將RGB顏色對象轉化為字符串格式。
### [命名空間](%E5%91%BD%E5%90%8D%E7%A9%BA%E9%97%B4)
- [d3.ns.prefix](Ming%20Ming%20Kong%20Jian%20.html#prefix) - 訪問或擴展已知的XML命名空間。
- [d3.ns.qualify](Ming%20Ming%20Kong%20Jian%20.html#qualify) - 限定一個前綴名稱,例如"xlink:href".
### [內部](%E5%86%85%E9%83%A8)
- [d3.dispatch](Nei%20Bu%20.html#d3_dispatch) - 創建一個定制的事件分發器。
- [d3.functor](Nei%20Bu%20.html#functor) - 創建一個函數并返回一個常量。
- [d3.rebind](Nei%20Bu%20.html#rebind) - 重新綁定get/set方法到一個子類上。
- [dispatch.on](Nei%20Bu%20.html#dispatch_on) - 注冊或者解除注冊事件監聽器。
- [dispatch.type](Nei%20Bu%20.html#_dispatch) - 為指定的監聽器分發事件。
## [d3.scale (比例尺)](%E6%AF%94%E4%BE%8B%E5%B0%BA)
### [數值比例尺](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantitative)
- [d3.scale.identity](Shu%20Zhi%20Bi%20Li%20Chi%20.html#identity) - 構建一個線性恒等比例尺。
- [d3.scale.linear](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear) - 構建一個線性比例尺。
- [d3.scale.log](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log) - 構建一個對數比例尺。
- [d3.scale.pow](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow) - 構建一個指數比例尺。
- [d3.scale.quantile](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantile) - 構建一個分位數比例尺。
- [d3.scale.quantize](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantize) - 構建一個量化比例尺(值域離散)。
- [d3.scale.sqrt](Shu%20Zhi%20Bi%20Li%20Chi%20.html#sqrt) - 構建一個平方根比例尺。
- [d3.scale.threshold](Shu%20Zhi%20Bi%20Li%20Chi%20.html#threshold) - 構建一個臨界值比例尺(值域離散)。
- [identity.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#identity_copy) - 復制比例尺。
- [identity.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#identity_domain) - 取得或設置比例尺的定義域。
- [identity.invert](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_identity) - 等價于恒等函數。
- [identity.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#identity_domain) - 等價于identity.domain。
- [identity.tickFormat](Shu%20Zhi%20Bi%20Li%20Chi%20.html#identity_tickFormat) - 獲取一個用來展示刻度值得格式化器。
- [identity.ticks](Shu%20Zhi%20Bi%20Li%20Chi%20.html#identity_ticks) - 取得定義域中典型的值。
- [identity](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_identity) - 恒等函數。
- [linear.clamp](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_clamp) - 啟用或者關閉值域的閉合。
- [linear.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_copy) - 復制比例尺。
- [linear.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_domain) - 取得或設置比例尺的定義域。
- [linear.interpolate](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_interpolate) - 取得或設置輸出插值器。
- [linear.invert](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_invert) - 取得輸出值對應的輸入值。
- [linear.nice](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_nice) - 擴展比例尺的定義域為一個優化的定義域。
- [linear.rangeRound](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_rangeRound) - 設置比例尺的輸出范圍,并四舍五入。
- [linear.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_range) - 取得或設置比例尺的輸出范圍。
- [linear.tickFormat](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_tickFormat) - 獲取一個用來展示刻度值得格式化器。
- [linear.ticks](Shu%20Zhi%20Bi%20Li%20Chi%20.html#linear_ticks) - 取得定義域中典型的值。
- [linear](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_linear) - 取得輸入值對應的輸出值。
- [log.clamp](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_clamp) - 啟用或者關閉值域的閉合。
- [log.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_copy) - 復制比例尺。
- [log.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_domain) - 取得或設置比例尺的定義域。
- [log.interpolate](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_interpolate) - 取得或設置輸出插值器。
- [log.invert](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_invert) - 取得輸出值對應的輸入值。
- [log.nice](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_nice) - 擴展比例尺的定義域為一個優化的10的次方。
- [log.rangeRound](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_rangeRound) - 設置比例尺的輸出范圍,并四舍五入。
- [log.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_range) - 取得或設置比例尺的輸出范圍。
- [log.tickFormat](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_tickFormat) - 獲取一個用來展示刻度值得格式化器。
- [log.ticks](Shu%20Zhi%20Bi%20Li%20Chi%20.html#log_ticks) - 取得定義域中典型的值。
- [log](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_log) - 取得輸入值對應的輸出值。
- [pow.clamp](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_clamp) - 啟用或者關閉值域的閉合。
- [pow.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_copy) - 復制比例尺。
- [pow.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_domain) - 取得或設置比例尺的定義域。
- [pow.exponent](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_exponent) - 取得或設置指數。
- [pow.interpolate](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_interpolate) - 取得或設置輸出插值器。
- [pow.invert](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_invert) - 取得輸出值對應的輸入值。
- [pow.nice](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_nice) - 擴展比例尺的定義域為一個優化的定義域。
- [pow.rangeRound](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_rangeRound) - 設置scale的輸出范圍,并四舍五入。
- [pow.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_range) - 取得或設置比例尺的值域。
- [pow.tickFormat](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_tickFormat) - 獲取一個用來展示刻度值得格式化器。
- [pow.ticks](Shu%20Zhi%20Bi%20Li%20Chi%20.html#pow_ticks) - 取得定義域中典型的值。
- [pow](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_pow) - 取得輸出值對應的輸入值。
- [quantile.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantile_copy) - 復制比例尺。
- [quantile.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantile_domain) - 取得或設置比例尺的定義域(離散的值)。
- [quantile.invertExtent](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantile_invertExtent) - 取得輸出值對應的輸入值。
- [quantile.quantiles](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantile_quantiles) - 取得比例尺的分位數箱閾值。
- [quantile.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantile_range) - 取得或設置比例尺的值域(離散的值)。
- [quantile](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_quantile) - 取得輸入值對應的輸出值。
- [quantize.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantize_copy) - 復制比例尺。
- [quantize.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantize_domain) - 取得或設置比例尺的定義域。
- [quantize.invertExtent](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantize_invertExtent) - 取得輸出值對應的輸入值。
- [quantize.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#quantize_range) - 取得或設置比例尺的值域(離散的值)。
- [quantize](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_quantize) - 取得輸入值對應的輸出值。
- [threshold.copy](Shu%20Zhi%20Bi%20Li%20Chi%20.html#threshold_copy) - 復制比例尺。
- [threshold.domain](Shu%20Zhi%20Bi%20Li%20Chi%20.html#threshold_domain) - 取得或設置比例尺的定義域。
- [threshold.invertExtent](Shu%20Zhi%20Bi%20Li%20Chi%20.html#threshold_invertExtent) - 取得輸出值對應的輸入值。
- [threshold.range](Shu%20Zhi%20Bi%20Li%20Chi%20.html#threshold_range) - 取得或設置比例尺的值域(離散的值)。
- [threshold](Shu%20Zhi%20Bi%20Li%20Chi%20.html#_threshold) - 取得輸入值對應的輸出值。
### [序數比例尺](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal)
- [d3.scale.ordinal](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal) - 構造一個序數比例尺。
- [ordinal](Xu%20Shu%20Bi%20Li%20Chi%20.html#_ordinal) - 獲取輸入值對應的輸出值。
- [ordinal.domain](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal_domain) - 獲取或指定比例尺的輸入域。
- [ordinal.range](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal_range) - 獲取或指定比例尺的輸出范圍。
- \[ordinal.rangePoints\] (序數比例尺.md#ordinal\_rangePoints) - 指定輸出范圍為連續區間。
- [ordinal.rangeRoundPoints](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal_rangeRoundPoints) - 指定輸出范圍為連續區間,刻度點均為整數。
- [ordinal.rangeBands](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal_rangeBands) - 指定輸出范圍為連續區間。
- [ordinal.rangeRoundBands](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal_rangeRoundBands) - 指定輸出范圍為連續區間,區間段的起點均為整數。
- \[ordinal.rangeBand\] (序數比例尺.md#ordinal\_rangeBand) - 獲取區間段的寬度。
- \[ordinal.rangeExtent\] (序數比例尺.md#ordinal\_rangeExtent) - 獲取當前比例尺的輸出范圍,未被切分的。
- [ordinal.copy](Xu%20Shu%20Bi%20Li%20Chi%20.html#ordinal_copy) - 深度拷貝當前比例尺對象。
- [d3.scale.category10](Xu%20Shu%20Bi%20Li%20Chi%20.html#category10) - 構造一個有10種顏色的序數比例尺。
- [d3.scale.category20](Xu%20Shu%20Bi%20Li%20Chi%20.html#category20) - 構造一個有20種顏色的序數比例尺。
- [d3.scale.category20b](Xu%20Shu%20Bi%20Li%20Chi%20.html#category20b) - 構造一個另外20種顏色的序數比例尺。
- [d3.scale.category20c](Xu%20Shu%20Bi%20Li%20Chi%20.html#category20c) - 構造一個另外20種顏色的序數比例尺。
## [SVG函數](SVG%E5%87%BD%E6%95%B0)
### [形狀](SVG-%E5%BD%A2%E7%8A%B6)
- [arc.centroid](SVG-Xing%20Zhuang%20.html#arc_centroid) - 計算弧中心。
- [arc.cornerRadius](SVG-Xing%20Zhuang%20.html#arc_cornerRadius) - 獲取或設置拐角(corner)半徑訪問器。
- [arc.endAngle](SVG-Xing%20Zhuang%20.html#arc_endAngle) - 獲取或設置結束角度訪問器。
- [arc.innerRadius](SVG-Xing%20Zhuang%20.html#arc_innerRadius) - 獲取或設置內半徑訪問器。
- [arc.outerRadius](SVG-Xing%20Zhuang%20.html#arc_outerRadius) - 獲取或設置外半徑訪問器。
- [arc.padAngle](SVG-Xing%20Zhuang%20.html#arc_padAngle) - 獲取或設置填補(pad)角度訪問器。
- [arc.padRadius](SVG-Xing%20Zhuang%20.html#arc_padRadius) - 獲取或設置填補(pad)半徑訪問器。
- [arc.startAngle](SVG-Xing%20Zhuang%20.html#arc_startAngle) - 獲取或設置開始角度訪問器。
- [arc](SVG-Xing%20Zhuang%20.html#_arc) - 生成一個像餅圖或圓環圖中的固定弧度。
- [area.angle](SVG-Xing%20Zhuang%20.html#area_radial_angle) - 獲取或設置*角度*訪問器。
- [area.defined](SVG-Xing%20Zhuang%20.html#area_defined) - 控制面積在給定點是否是有定義的。
- [area.defined](SVG-Xing%20Zhuang%20.html#area_radial_defined) - 控制徑向面積在給定點是否是有定義的。
- [area.endAngle](SVG-Xing%20Zhuang%20.html#area_radial_endAngle) - 獲取或設置*角度*(頂線)訪問器。
- [area.innerRadius](SVG-Xing%20Zhuang%20.html#area_radial_innerRadius) - 獲取或設置內*半徑*(基線)訪問器。
- [area.interpolate](SVG-Xing%20Zhuang%20.html#area_interpolate) - 獲取或設置插值模式。
- [area.outerRadius](SVG-Xing%20Zhuang%20.html#area_radial_outerRadius) - 獲取或設置外*半徑*(頂線)訪問器。
- [area.radius](SVG-Xing%20Zhuang%20.html#area_radial_radius) - 獲取或設置*半徑*訪問器。
- [area.startAngle](SVG-Xing%20Zhuang%20.html#area_radial_startAngle) - 獲取或設置*角度*(基線)訪問器。
- [area.tension](SVG-Xing%20Zhuang%20.html#area_tension) - 獲取或設置基本樣條線的張力。
- [area.x0](SVG-Xing%20Zhuang%20.html#area_x0) - 獲取或設置*x0*-坐標(基線)訪問器。
- [area.x1](SVG-Xing%20Zhuang%20.html#area_x1) - 獲取或設置*x1*-坐標(頂線)訪問器。
- [area.x](SVG-Xing%20Zhuang%20.html#area_x) - 獲取或設置*x*-坐標訪問器。
- [area.y0](SVG-Xing%20Zhuang%20.html#area_y0) - 獲取或設置*y0*-坐標(基線)訪問器。
- [area.y1](SVG-Xing%20Zhuang%20.html#area_y1) - 獲取或設置*y1*-坐標(頂線)訪問器。
- [area.y](SVG-Xing%20Zhuang%20.html#area_y) - 獲取或設置*y*-坐標訪問器。
- [area](SVG-Xing%20Zhuang%20.html#_area) - 生成一個像面積圖中的分段線性面積。
- [area](SVG-Xing%20Zhuang%20.html#_area_radial) - 生成一個像極坐標面積圖中的分段線性面積。
- [chord.endAngle](SVG-Xing%20Zhuang%20.html#chord_endAngle) - 獲取或設置圓弧結束角訪問器。
- [chord.radius](SVG-Xing%20Zhuang%20.html#chord_radius) - 獲取或設置圓弧半徑訪問器。
- [chord.source](SVG-Xing%20Zhuang%20.html#chord_source) - 獲取或設置圓弧來源圓弧訪問器。
- [chord.startAngle](SVG-Xing%20Zhuang%20.html#chord_startAngle) - 獲取或設置圓弧開始角訪問器。
- [chord.target](SVG-Xing%20Zhuang%20.html#chord_target) - 獲取或設置目標圓弧訪問器。
- [chord](SVG-Xing%20Zhuang%20.html#_chord) - 在弦圖中生成一個二次貝塞爾曲線連接兩個弧。
- [d3.svg.arc](SVG-Xing%20Zhuang%20.html#arc) - 新建一個弧度生成器。
- [d3.svg.area.radial](SVG-Xing%20Zhuang%20.html#area_radial) - 新建一個徑向面積生成器。
- [d3.svg.area](SVG-Xing%20Zhuang%20.html#area) - 新建一個面積生成器。
- [d3.svg.chord](SVG-Xing%20Zhuang%20.html#chord) - 新建一個弦生成器。
- [d3.svg.diagonal.radial](SVG-Xing%20Zhuang%20.html#diagonal_radial) - 新建一個徑向對角線生成器。
- [d3.svg.diagonal](SVG-Xing%20Zhuang%20.html#diagonal) - 新建一個對角線生成器。
- [d3.svg.line.radial](SVG-Xing%20Zhuang%20.html#line_radial) - 新建一個徑向線生成器。
- [d3.svg.line](SVG-Xing%20Zhuang%20.html#line) - 新建一個線生成器。
- [d3.svg.symbolTypes](SVG-Xing%20Zhuang%20.html#symbolTypes) - 一組符號類型。
- [d3.svg.symbol](SVG-Xing%20Zhuang%20.html#symbol) - 新建一個符號生成器。
- [diagonal.projection](SVG-Xing%20Zhuang%20.html#diagonal_projection) - 設置或獲取一個可選的點轉換。
- [diagonal.source](SVG-Xing%20Zhuang%20.html#diagonal_source) - 設置或獲取源點訪問器。
- [diagonal.target](SVG-Xing%20Zhuang%20.html#diagonal_target) - 設置或獲取目標點訪問器。
- [diagonal](SVG-Xing%20Zhuang%20.html#_diagonal) - 生成一個像節點鏈接圖中的二維貝塞爾連接器。
- [diagonal](SVG-Xing%20Zhuang%20.html#_diagonal_radial) - 生成一個像節點鏈接圖中的二維徑向貝塞爾連接器。
- [line.angle](SVG-Xing%20Zhuang%20.html#line_radial_angle) - 設置或獲取*角度* accessor.
- [line.defined](SVG-Xing%20Zhuang%20.html#line_defined) - 控制線在給定點是否是定義的。
- [line.defined](SVG-Xing%20Zhuang%20.html#line_radial_defined) - 控制徑向線在給定點是否是定義的。
- [line.interpolate](SVG-Xing%20Zhuang%20.html#line_interpolate) - 設置或獲取插值模式。
- [line.interpolate](SVG-Xing%20Zhuang%20.html#line_radial_interpolate) - 設置或獲取徑向弦的插值模式。
- [line.radius](SVG-Xing%20Zhuang%20.html#line_radial_radius) - 設置或獲取*半徑*訪問器。
- [line.tension](SVG-Xing%20Zhuang%20.html#line_radial_tension) - 設置或獲取徑向基本樣條線的張力。
- [line.tension](SVG-Xing%20Zhuang%20.html#line_tension) - 設置或獲取基本樣條線的張力。
- [line.x](SVG-Xing%20Zhuang%20.html#line_x) - 設置或獲取*x*-坐標訪問器。
- [line.y](SVG-Xing%20Zhuang%20.html#line_y) - 設置或獲取*y*-坐標訪問器。
- [line](SVG-Xing%20Zhuang%20.html#_line) - 生成一個像線圖中的分段線段。
- [line](SVG-Xing%20Zhuang%20.html#_line_radial) - 生成一個像極線圖中的分段線段。
- [symbol.size](SVG-Xing%20Zhuang%20.html#symbol_size) - 設置或獲取符號尺寸(平方像素)訪問器。
- [symbol.type](SVG-Xing%20Zhuang%20.html#symbol_type) - 設置或獲取符號類型訪問器。
- [symbol](SVG-Xing%20Zhuang%20.html#_symbol) - 生成一個像散點圖中的符號。
### [軸](SVG-%E8%BD%B4)
- [axis.innerTickSize](SVG-Zhou%20.html#innerTickSize) - 指定內刻度大小。
- [axis.orient](SVG-Zhou%20.html#orient) - 設置或者取得軸的方向。
- [axis.outerTickSize](SVG-Zhou%20.html#outerTickSize) - 指定外刻度大小。
- [axis.scale](SVG-Zhou%20.html#scale) - 設置或者取得比例尺。
- [axis.tickFormat](SVG-Zhou%20.html#tickFormat) - 重載標簽的刻度格式化。
- [axis.tickPadding](SVG-Zhou%20.html#tickPadding) - 指定刻度和刻度標簽之間的間距。
- [axis.tickSize](SVG-Zhou%20.html#tickSize) - 指定主要的次要的和尾部的刻度。
- [axis.ticks](SVG-Zhou%20.html#ticks) - 控制軸的刻度如何生成。
- [axis.tickValues](SVG-Zhou%20.html#tickValues) - 明確地指定刻度值。
- [axis](SVG-Zhou%20.html#_axis) - 為給定的選擇器或過渡創建或者更新軸。
- [d3.svg.axis](SVG-Zhou%20.html#axis) - 創建一個新的軸生成器。
### [刷子](SVG-%E6%8E%A7%E4%BB%B6)
- [brush.clear](SVG-Kong%20Jian%20.html#brush_clear) - 重置拖選范圍。
- [brush.empty](SVG-Kong%20Jian%20.html#brush_empty) - 拖選是否為空。
- [brush.event](SVG-Kong%20Jian%20.html#brush_event) - 在設置范圍之后分發拖選事件。
- [brush.extent](SVG-Kong%20Jian%20.html#brush_extent) - 拖選范圍可以是0,1,2維的。
- [brush.on](SVG-Kong%20Jian%20.html#brush_on) - 監聽拖選何時改變。
- [brush.x](SVG-Kong%20Jian%20.html#brush_x) - 拖選的*x*-比例,用于水平拖選。
- [brush.y](SVG-Kong%20Jian%20.html#brush_y) - 拖選的*y*-比例,用于垂直拖選。
- [brush](SVG-Kong%20Jian%20.html#_brush) - 將拖選應用在指定的選擇器和過渡上。
- [d3.svg.brush](SVG-Kong%20Jian%20.html#brush) - 點擊和拖曳來選擇一個1維或2維區域。
## [d3.time (時間)](%E6%97%B6%E9%97%B4)
### [時間格式化](%E6%97%B6%E9%97%B4%E6%A0%BC%E5%BC%8F%E5%8C%96)
- [d3.time.format.iso](Shi%20Jian%20Ge%20Shi%20Hua%20.html#format_iso) - ISO 8601 UTC時間格式化器。
- [d3.time.format.multi](Shi%20Jian%20Ge%20Shi%20Hua%20.html#format_multi) - 創建一個新的本地多功能時間格式化器。
- [d3.time.format.utc](Shi%20Jian%20Ge%20Shi%20Hua%20.html#format_utc) - 由指定的限定符創建一個新的UTC時間格式化器。
- [d3.time.format](Shi%20Jian%20Ge%20Shi%20Hua%20.html#format) - 由指定的限定符創建一個新的本地時間格式化器。
- [format.parse](Shi%20Jian%20Ge%20Shi%20Hua%20.html#parse) - 將字符串解析為時間對象。
- [format](Shi%20Jian%20Ge%20Shi%20Hua%20.html#_format) - 將一個時間對象格式化為一個字符串。
### [時間比例尺](%E6%97%B6%E9%97%B4%E6%AF%94%E4%BE%8B%E5%B0%BA)
- [d3.time.scale](Shi%20Jian%20Bi%20Li%20Chi%20.html#scale) - 構造一個線性時間比例尺。
- [scale.clamp](Shi%20Jian%20Bi%20Li%20Chi%20.html#clamp) - 指定輸出范圍是否閉合。
- [scale.copy](Shi%20Jian%20Bi%20Li%20Chi%20.html#copy) - 創建比例尺的副本。
- [scale.domain](Shi%20Jian%20Bi%20Li%20Chi%20.html#domain) - 取得或設置比例尺度的定義域。
- [scale.interpolate](Shi%20Jian%20Bi%20Li%20Chi%20.html#interpolate) - 取得或設置比例尺的輸出插值器。
- [scale.invert](Shi%20Jian%20Bi%20Li%20Chi%20.html#invert) - 取得給定輸出值對應定義域中的值。
- [scale.nice](Shi%20Jian%20Bi%20Li%20Chi%20.html#nice) - 擴展比例尺的定義域為一個優化的整數值。
- [scale.rangeRound](Shi%20Jian%20Bi%20Li%20Chi%20.html#rangeRound) - 設置比例尺的四舍五入輸出范圍。
- [scale.range](Shi%20Jian%20Bi%20Li%20Chi%20.html#range) - 取得或設置比例尺的輸出范圍。
- [scale.tickFormat](Shi%20Jian%20Bi%20Li%20Chi%20.html#tickFormat) - 取得用于展示刻度值的格式化器。
- [scale.ticks](Shi%20Jian%20Bi%20Li%20Chi%20.html#ticks) - 取得定義域中有代表性的值。
- [scale](Shi%20Jian%20Bi%20Li%20Chi%20.html#_scale) - 取得給定定義域中值對應的輸出范圍中的值。
### [時間間隔](%E6%97%B6%E9%97%B4%E9%97%B4%E9%9A%94)
- [d3.time.dayOfYear](Shi%20Jian%20Jian%20Ge%20.html#dayOfYear) - 計算天數。
- [d3.time.days](Shi%20Jian%20Jian%20Ge%20.html#day) - day.range的別名。
- [d3.time.day](Shi%20Jian%20Jian%20Ge%20.html#day) - 每天(12:00 AM)。
- [d3.time.fridayOfYear](Shi%20Jian%20Jian%20Ge%20.html#fridayOfYear) - 計算基于周五的星期數。
- [d3.time.fridays](Shi%20Jian%20Jian%20Ge%20.html#fridays) -friday.range的別名。
- [d3.time.friday](Shi%20Jian%20Jian%20Ge%20.html#friday) - 每周五(例如February 5, 12:00 AM)。
- [d3.time.hours](Shi%20Jian%20Jian%20Ge%20.html#hours) - hour.range的別名。
- [d3.time.hour](Shi%20Jian%20Jian%20Ge%20.html#hour) - 每個小時(例如, 1:00 AM)。
- [d3.time.interval](Shi%20Jian%20Jian%20Ge%20.html#interval) - 一個基于本地時間的時間間隔。
- [d3.time.minutes](Shi%20Jian%20Jian%20Ge%20.html#minutes) - minute.range的別名。
- [d3.time.minute](Shi%20Jian%20Jian%20Ge%20.html#minute) - 每分鐘(例如, 1:02 AM)。
- [d3.time.mondayOfYear](Shi%20Jian%20Jian%20Ge%20.html#mondayOfYear) - 計算基于周一的星期數。
- [d3.time.mondays](Shi%20Jian%20Jian%20Ge%20.html#mondays) - monday.range的別名。
- [d3.time.monday](Shi%20Jian%20Jian%20Ge%20.html#monday) - 每周一(例如, February 5, 12:00 AM)
- [d3.time.months](Shi%20Jian%20Jian%20Ge%20.html#months) - month.range的別名。
- [d3.time.month](Shi%20Jian%20Jian%20Ge%20.html#month) - 每個月(例如, February 1, 12:00 AM)
- [d3.time.saturdayOfYear](Shi%20Jian%20Jian%20Ge%20.html#saturdayOfYear) - 計算基于周六的星期數。
- [d3.time.saturdays](Shi%20Jian%20Jian%20Ge%20.html#saturdays) - saturday.range的別名。
- [d3.time.saturday](Shi%20Jian%20Jian%20Ge%20.html#saturday) - every Saturday (例如, February 5, 12:00 AM)。
- [d3.time.seconds](Shi%20Jian%20Jian%20Ge%20.html#seconds) - second.range的別名。
- [d3.time.second](Shi%20Jian%20Jian%20Ge%20.html#second) - 每秒(例如, 1:02:03 AM)。
- [d3.time.sundayOfYear](Shi%20Jian%20Jian%20Ge%20.html#sundayOfYear) - 計算基于周日的星期數。
- [d3.time.sundays](Shi%20Jian%20Jian%20Ge%20.html#sundays) - sunday.range的別名。
- [d3.time.sunday](Shi%20Jian%20Jian%20Ge%20.html#sunday) - 每周日(例如February 5, 12:00 AM)。
- [d3.time.thursdayOfYear](Shi%20Jian%20Jian%20Ge%20.html#thursdayOfYear) - 計算基于周四的星期數。
- [d3.time.thursdays](Shi%20Jian%20Jian%20Ge%20.html#thursdays) - thursday.range的別名。
- [d3.time.thursday](Shi%20Jian%20Jian%20Ge%20.html#thursday) - 每周四(例如February 5, 12:00 AM)。
- [d3.time.tuesdayOfYear](Shi%20Jian%20Jian%20Ge%20.html#tuesdayOfYear) - 計算基于周二的星期數。
- [d3.time.tuesdays](Shi%20Jian%20Jian%20Ge%20.html#tuesdays) - tuesday.range的別名。
- [d3.time.tuesday](Shi%20Jian%20Jian%20Ge%20.html#tuesday) - 每周二(例如February 5, 12:00 AM)。
- [d3.time.wednesdayOfYear](Shi%20Jian%20Jian%20Ge%20.html#tuesdayOfYear) - 計算基于周三的星期數。
- [d3.time.wednesdays](Shi%20Jian%20Jian%20Ge%20.html#wednesdays) - wednesday.range的別名。
- [d3.time.wednesday](Shi%20Jian%20Jian%20Ge%20.html#wednesday) - 每周三(例如February 5, 12:00 AM)。
- [d3.time.weekOfYear](Shi%20Jian%20Jian%20Ge%20.html#weekOfYear) - sundayOfYear的別名。
- [d3.time.weeks](Shi%20Jian%20Jian%20Ge%20.html#weeks) - sunday.range的別名。
- [d3.time.week](Shi%20Jian%20Jian%20Ge%20.html#week) - sunday的別名。
- [d3.time.years](Shi%20Jian%20Jian%20Ge%20.html#years) - year.range的別名。
- [d3.time.year](Shi%20Jian%20Jian%20Ge%20.html#year) - 每年(例如January 1, 12:00 AM)。
- [interval.ceil](Shi%20Jian%20Jian%20Ge%20.html#interval_ceil) - 上取整到最近的時間間隔。
- [interval.floor](Shi%20Jian%20Jian%20Ge%20.html#interval_floor) - 下取整到最近的時間間隔。
- [interval.offset](Shi%20Jian%20Jian%20Ge%20.html#interval_offset) - 基于一些間隔返回時間偏移。
- [interval.range](Shi%20Jian%20Jian%20Ge%20.html#interval_range) - 返回指定范圍中的日期。
- [interval.round](Shi%20Jian%20Jian%20Ge%20.html#interval_round) - 四舍五入到最近的時間間隔。
- [interval.utc](Shi%20Jian%20Jian%20Ge%20.html#interval_utc) - 返回UTC時間間隔。
- [interval](Shi%20Jian%20Jian%20Ge%20.html#_interval) - interval.floor的別名。
## [d3.layout (布局)](%E5%B8%83%E5%B1%80)
### [捆布局](%E6%8D%86%E5%B8%83%E5%B1%80)
- [bundle](Kun%20Bu%20Ju%20.html#_bundle) - 對邊使用Holten *層次捆綁* 算法。
- [d3.layout.bundle](Kun%20Bu%20Ju%20.html#bundle) - 構造一個新的默認的捆綁布局。
### [弦布局](%E5%BC%A6%E5%B8%83%E5%B1%80)
- [chord.chords](Xian%20Bu%20Ju%20.html#chords) - 取回計算的弦角度。
- [chord.groups](Xian%20Bu%20Ju%20.html#groups) - 取回計算的分組角度。
- [chord.matrix](Xian%20Bu%20Ju%20.html#matrix) - 取得或設置布局需要的矩陣數據。
- [chord.padding](Xian%20Bu%20Ju%20.html#padding) - 取得或設置弦片段間的角填充。
- [chord.sortChords](Xian%20Bu%20Ju%20.html#sortChords) - 取得或設置用于弦的比較器(Z軸順序)。
- [chord.sortGroups](Xian%20Bu%20Ju%20.html#sortGroups) - 取得或設置用于分組的比較器。
- [chord.sortSubgroups](Xian%20Bu%20Ju%20.html#sortSubgroups) - 取得或設置用于子分組的比較器。
- [d3.layout.chord](Xian%20Bu%20Ju%20.html#chord) - 從關系矩陣生成一個弦圖。
### [簇布局](%E7%B0%87%E5%B8%83%E5%B1%80)
- [cluster.children](Cu%20Bu%20Ju%20.html#children) - 取得或者設置子節點的訪問器函數。
- [cluster.links](Cu%20Bu%20Ju%20.html#links) - 技術樹節點之間的父子連接。
- [cluster.nodeSize](Cu%20Bu%20Ju%20.html#nodeSize) - 為每個節點指定固定的尺寸。
- [cluster.nodes](Cu%20Bu%20Ju%20.html#nodes) - 計算簇布局并返回節點數組。
- [cluster.separation](Cu%20Bu%20Ju%20.html#separation) - 取得或設置鄰接節點的分隔函數。
- [cluster.size](Cu%20Bu%20Ju%20.html#size) - 取得或設置布局的尺寸。
- [cluster.sort](Cu%20Bu%20Ju%20.html#sort) - 取得或設置兄弟節點的比較器函數。
- [cluster](Cu%20Bu%20Ju%20.html#_cluster) - cluster.nodes的別名。
- [d3.layout.cluster](Cu%20Bu%20Ju%20.html#cluster) - 將實體聚集成樹狀圖。
### [力布局](%E5%8A%9B%E5%B8%83%E5%B1%80)
- [d3.layout.force](Li%20Bu%20Ju%20.html#force) - 使用物理模擬排放鏈接節點的位置。
- [force.alpha](Li%20Bu%20Ju%20.html#alpha) - 取得或者設置力布局的冷卻參數。
- [force.chargeDistance](Li%20Bu%20Ju%20.html#chargeDistance) - 取得或者設置最大電荷距離。
- [force.charge](Li%20Bu%20Ju%20.html#charge) - 取得或者設置電荷強度。
- [force.drag](Li%20Bu%20Ju%20.html#drag) - 給節點綁定拖動行為。
- [force.friction](Li%20Bu%20Ju%20.html#friction) - 取得或者設置摩擦系數。
- [force.gravity](Li%20Bu%20Ju%20.html#gravity) - 取得或者設置重力強度。
- [force.linkDistance](Li%20Bu%20Ju%20.html#linkDistance) - 取得或者設置鏈接距離。
- [force.linkStrength](Li%20Bu%20Ju%20.html#linkStrength) - 取得或者設置鏈接強度。
- [force.links](Li%20Bu%20Ju%20.html#links) - 取得或者設置節點間的鏈接數組。
- [force.nodes](Li%20Bu%20Ju%20.html#nodes) - 取得或者設置布局的節點數組。
- [force.on](Li%20Bu%20Ju%20.html#on) - 監聽在計算布局位置時的更新。
- [force.resume](Li%20Bu%20Ju%20.html#resume) - 重新加熱冷卻參數,并重啟模擬。
- [force.size](Li%20Bu%20Ju%20.html#size) - 取得或者設置布局大小。
- [force.start](Li%20Bu%20Ju%20.html#start) - 當節點變化時啟動或者重啟模擬。
- [force.stop](Li%20Bu%20Ju%20.html#stop) - 立即停止模擬。
- [force.theta](Li%20Bu%20Ju%20.html#theta) - 取得或者設置電荷作用的精度。
- [force.tick](Li%20Bu%20Ju%20.html#tick) - 運行布局模擬的一步。
### [層次布局](%E5%B1%82%E6%AC%A1%E5%B8%83%E5%B1%80)
- [d3.layout.hierarchy](Ceng%20Ci%20Bu%20Ju%20.html#hierarchy) - 派生一個定制的層次布局實現。
- [hierarchy.children](Ceng%20Ci%20Bu%20Ju%20.html#children) -取得或設置子節點的訪問器。
- [hierarchy.links](Ceng%20Ci%20Bu%20Ju%20.html#links) - 計算樹節點中的父子鏈接。
- [hierarchy.nodes](Ceng%20Ci%20Bu%20Ju%20.html#nodes) - 計算層次布局并返回節點數組。
- [hierarchy.revalue](Ceng%20Ci%20Bu%20Ju%20.html#revalue) - 重新計算層次值。
- [hierarchy.sort](Ceng%20Ci%20Bu%20Ju%20.html#sort) - 取得或設置兄弟節點的比較器函數。
- [hierarchy.value](Ceng%20Ci%20Bu%20Ju%20.html#value) - 取得或設置值訪問器函數。
- [hierarchy](Ceng%20Ci%20Bu%20Ju%20.html#_hierarchy) - hierarchy.nodes的別名。
### [直方圖布局](%E7%9B%B4%E6%96%B9%E5%9B%BE%E5%B8%83%E5%B1%80)
- [d3.layout.histogram](Zhi%20Fang%20Tu%20Bu%20Ju%20.html#histogram) - 構造一個新的默認的直方圖布局。
- [histogram.bins](Zhi%20Fang%20Tu%20Bu%20Ju%20.html#bins) - 指定值是如何組織到箱中的。
- [histogram.frequency](Zhi%20Fang%20Tu%20Bu%20Ju%20.html#frequency) - 按頻數或者頻率計算分布。
- [histogram.range](Zhi%20Fang%20Tu%20Bu%20Ju%20.html#range) - 取得或設置值得范圍。
- [histogram.value](Zhi%20Fang%20Tu%20Bu%20Ju%20.html#value) - 取得或設置值訪問器。
- [histogram](Zhi%20Fang%20Tu%20Bu%20Ju%20.html#_histogram) - 使用量化的箱計算數據的分布。
### [包布局](%E5%8C%85%E5%B8%83%E5%B1%80)
- [d3.layout.pack](Bao%20Bu%20Ju%20.html#pack) - 用遞歸的圓-包生成一個層次布局。
- [pack.children](Bao%20Bu%20Ju%20.html#children) - 取得或設置子節點的訪問器。
- [pack.links](Bao%20Bu%20Ju%20.html#links) - 計算樹節點中的父子鏈接。
- [pack.nodes](Bao%20Bu%20Ju%20.html#nodes) - 計算包布局并返回節點數組。
- [pack.padding](Bao%20Bu%20Ju%20.html#padding) - 指定布局間距(以像素為單位)
- [pack.radius](Bao%20Bu%20Ju%20.html#radius) - 指定節點半徑(不是由值派生來的)
- [pack.size](Bao%20Bu%20Ju%20.html#size) - 指定布局尺寸。
- [pack.sort](Bao%20Bu%20Ju%20.html#sort) - 控制兄弟節點的遍歷順序。
- [pack.value](Bao%20Bu%20Ju%20.html#value) - 取得或設置用于圓尺寸的值訪問器。
- [pack](Bao%20Bu%20Ju%20.html#_pack) - pack.nodes的別名。
### [分區布局](%E5%88%86%E5%8C%BA%E5%B8%83%E5%B1%80)
- [d3.layout.partition](Fen%20Qu%20Bu%20Ju%20.html#partition) - 遞歸地將節點樹分區為旭日圖或者冰柱圖。
- [partition.children](Fen%20Qu%20Bu%20Ju%20.html#children) - 取得或設置孩子訪問器。
- [partition.links](Fen%20Qu%20Bu%20Ju%20.html#links) - 計算樹節點中的父子鏈接。
- [partition.nodes](Fen%20Qu%20Bu%20Ju%20.html#nodes) - 計算分區布局并返回節點數組。
- [partition.size](Fen%20Qu%20Bu%20Ju%20.html#size) - 指定布局的尺寸。
- [partition.sort](Fen%20Qu%20Bu%20Ju%20.html#sort) - 控制兄弟節點的遍歷順序。
- [partition.value](Fen%20Qu%20Bu%20Ju%20.html#value) - 取得或設置用來指定圓尺寸的值訪問器。
- [partition](Fen%20Qu%20Bu%20Ju%20.html#_partition) - partition.nodes的別名。
### [餅布局](%E9%A5%BC%E5%B8%83%E5%B1%80)
- [d3.layout.pie](Bing%20Bu%20Ju%20.html#pie) - 構造一個新的默認的餅布局。
- [pie.endAngle](Bing%20Bu%20Ju%20.html#endAngle) -取得或設置餅布局整體的結束角度。
- [pie.padAngle](Bing%20Bu%20Ju%20.html#padAngle) - 取得或設置餅布局填充角度。
- [pie.sort](Bing%20Bu%20Ju%20.html#sort) - 控制餅片段的順時針方向的順序。
- [pie.startAngle](Bing%20Bu%20Ju%20.html#startAngle) - 取得或設置餅布局整體的開始角度。
- [pie.value](Bing%20Bu%20Ju%20.html#value) - 取得或設置值訪問器函數。
- [pie](Bing%20Bu%20Ju%20.html#_pie) - 計算餅圖或圓環圖中弧的開始和結束角度。
### [堆疊布局](%E5%A0%86%E5%8F%A0%E5%B8%83%E5%B1%80)
- [d3.layout.stack](Dui%20Die%20Bu%20Ju%20.html#stack) - 構造一個新的默認的堆疊布局。
- [stack.offset](Dui%20Die%20Bu%20Ju%20.html#offset) - 指定整體的基線算法。
- [stack.order](Dui%20Die%20Bu%20Ju%20.html#order) - 控制每個系列的順序。
- [stack.out](Dui%20Die%20Bu%20Ju%20.html#out) - 取得或設置用于存儲基線的輸出函數。
- [stack.values](Dui%20Die%20Bu%20Ju%20.html#values) - 取得或設置每個系列的值訪問器函數。
- [stack.x](Dui%20Die%20Bu%20Ju%20.html#x) - 取得或設置*x*-維訪問器函數。
- [stack.y](Dui%20Die%20Bu%20Ju%20.html#y) - 取得或設置*y*-維訪問器函數。
- [stack](Dui%20Die%20Bu%20Ju%20.html#_stack) - 計算堆疊圖或者面積圖的基線。
### [樹布局](%E6%A0%91%E5%B8%83%E5%B1%80)
- [d3.layout.tree](Shu%20Bu%20Ju%20.html#tree) - 整齊地排列樹節點。
- [tree.children](Shu%20Bu%20Ju%20.html#children) - 取得或設置孩子訪問器。
- [tree.links](Shu%20Bu%20Ju%20.html#links) - 計算樹節點的父-子連接。
- [tree.nodeSize](Shu%20Bu%20Ju%20.html#nodeSize) - 為每個節點指定一個固定的尺寸。
- [tree.nodes](Shu%20Bu%20Ju%20.html#nodes) - 計算父布局并返回一組節點。
- [tree.separation](Shu%20Bu%20Ju%20.html#separation) - 取得或設置相鄰節點的間隔函數。
- [tree.size](Shu%20Bu%20Ju%20.html#size) - 用*x*和*y*指定樹的尺寸。
- [tree.sort](Shu%20Bu%20Ju%20.html#sort) - 控制遍歷順序中兄弟節點的順序。
- [tree](Shu%20Bu%20Ju%20.html#_tree) - tree.nodes的別名。
### [矩形樹布局](%E7%9F%A9%E5%BD%A2%E6%A0%91%E5%B8%83%E5%B1%80)
- [d3.layout.treemap](Ju%20Xing%20Shu%20Bu%20Ju%20.html#treemap) - 使用空間遞歸分區算法展示樹的節點。
- [treemap.children](Ju%20Xing%20Shu%20Bu%20Ju%20.html#children) - 取得或設置孩子訪問器。
- [treemap.links](Ju%20Xing%20Shu%20Bu%20Ju%20.html#links) - 計算樹節點中的父子鏈接。
- [treemap.mode](Ju%20Xing%20Shu%20Bu%20Ju%20.html#mode) - 改變布局的算法。
- [treemap.nodes](Ju%20Xing%20Shu%20Bu%20Ju%20.html#nodes) - 計算矩形樹布局并返回節點數組。
- [treemap.padding](Ju%20Xing%20Shu%20Bu%20Ju%20.html#padding) - 指定父子之間的間距。
- [treemap.round](Ju%20Xing%20Shu%20Bu%20Ju%20.html#round) - 啟用或者禁用四舍五入像素值。
- [treemap.size](Ju%20Xing%20Shu%20Bu%20Ju%20.html#size) - 指定布局的尺寸。
- [treemap.sort](Ju%20Xing%20Shu%20Bu%20Ju%20.html#sort) - 控制兄弟節點的遍歷順序。
- [treemap.sticky](Ju%20Xing%20Shu%20Bu%20Ju%20.html#sticky) - 讓布局對穩定的更新是粘滯的(sticky)。
- [treemap.value](Ju%20Xing%20Shu%20Bu%20Ju%20.html#value) - 取得或設置用來指定矩形樹中矩形單元尺寸的值訪問器。
- [treemap](Ju%20Xing%20Shu%20Bu%20Ju%20.html#_treemap) - treemap.nodes的別名。
## [d3.geo (地理)](%E5%9C%B0%E7%90%86)
### [地理路徑](%E5%9C%B0%E7%90%86%E8%B7%AF%E5%BE%84)
- [circle.angle](Di%20Li%20Lu%20Jing%20.html#circle_angle) - 指定角半徑(以度為單位)。
- [circle.origin](Di%20Li%20Lu%20Jing%20.html#circle_origin) - 指定經緯度原點。
- [circle.precision](Di%20Li%20Lu%20Jing%20.html#circle_precision) - 指定分段圓的精度。
- [circle](Di%20Li%20Lu%20Jing%20.html#_circle) - 生成一個分段圓。
- [d3.geo.area](Di%20Li%20Lu%20Jing%20.html#area) - 計算給定要素的球體面積。
- [d3.geo.bounds](Di%20Li%20Lu%20Jing%20.html#bounds) - 計算給定要素的經緯度邊界框。
- [d3.geo.centroid](Di%20Li%20Lu%20Jing%20.html#centroid) - 計算給定要素的球體中心。
- [d3.geo.circle](Di%20Li%20Lu%20Jing%20.html#circle) - 創建一個圓生成器。
- [d3.geo.distance](Di%20Li%20Lu%20Jing%20.html#distance) - 計算兩點之間的大弧距離。
- [d3.geo.graticule](Di%20Li%20Lu%20Jing%20.html#graticule) - 創建一個經緯網生成器。
- [d3.geo.interpolate](Di%20Li%20Lu%20Jing%20.html#interpolate) - 兩個點之間插入一個大弧。
- [d3.geo.length](Di%20Li%20Lu%20Jing%20.html#length) - 計算線的長度或多邊形的面積。
- [d3.geo.path](Di%20Li%20Lu%20Jing%20.html#path) - 創建一個地理路徑生成器。
- [d3.geo.rotation](Di%20Li%20Lu%20Jing%20.html#rotation) - 為指定的角度\[λ, φ, γ\]創建一個旋轉角度。
- [graticule.extent](Di%20Li%20Lu%20Jing%20.html#graticule_extent) - 取得或設置major & minor范圍。
- [graticule.lines](Di%20Li%20Lu%20Jing%20.html#graticule_lines) - 為經線和緯線生成線數組。
- [graticule.majorExtent](Di%20Li%20Lu%20Jing%20.html#graticule_majorExtent) - 取得或設置major范圍。
- [graticule.majorStep](Di%20Li%20Lu%20Jing%20.html#graticule_majorStep) - 取得或設置major步長間隔。
- [graticule.minorExtent](Di%20Li%20Lu%20Jing%20.html#graticule_minorExtent) - 取得或設置minor范圍。
- [graticule.minorStep](Di%20Li%20Lu%20Jing%20.html#graticule_minorStep) - 取得或設置minor步長間隔。
- [graticule.outline](Di%20Li%20Lu%20Jing%20.html#graticule_outline) - 生成格子線范圍的一個多邊形。
- [graticule.precision](Di%20Li%20Lu%20Jing%20.html#graticule_precision) - 取得或設置緯度精度。
- [graticule.step](Di%20Li%20Lu%20Jing%20.html#graticule_step) - 取得或設置major & minor步長間隔。
- [graticule](Di%20Li%20Lu%20Jing%20.html#_graticule) - 生成經緯線的多線要素。
- [path.area](Di%20Li%20Lu%20Jing%20.html#path_area) - 計算給定要素的投影面積。
- [path.bounds](Di%20Li%20Lu%20Jing%20.html#path_bounds) - 計算給定要素的投影邊界。
- [path.centroid](Di%20Li%20Lu%20Jing%20.html#path_centroid) - 計算給定要素的投影中心。
- [path.context](Di%20Li%20Lu%20Jing%20.html#path_context) - 取得或設置渲染上下文。
- [path.pointRadius](Di%20Li%20Lu%20Jing%20.html#path_pointRadius) - 取得或設置點要素的半徑。
- [path.projection](Di%20Li%20Lu%20Jing%20.html#path_projection) - 取得或設置地理投影。
- [path](Di%20Li%20Lu%20Jing%20.html#_path) - 投影指定的要素并渲染上下文。
- [rotation.invert](Di%20Li%20Lu%20Jing%20.html#rotation_invert) - 反旋轉球體周圍的給定位置。
- [rotation](Di%20Li%20Lu%20Jing%20.html#_rotation) - 旋轉球體周圍的給定位置。
### [地理投影](%E5%9C%B0%E7%90%86%E6%8A%95%E5%BD%B1)
- [albers.parallels](Di%20Li%20Tou%20Ying%20.html#albers_parallels) - 取得或者設置投影的兩條標準平行線。
- [d3.geo.albersUsa](Di%20Li%20Tou%20Ying%20.html#albersUsa) - 用于展示美國地圖的Albers復合投影。
- [d3.geo.albers](Di%20Li%20Tou%20Ying%20.html#albers) - Albers等面積圓錐投影。
- [d3.geo.azimuthalEqualArea.raw](Di%20Li%20Tou%20Ying%20.html#azimuthalEqualArea_raw) - 原始方位角等面積投影。
- [d3.geo.azimuthalEqualArea](Di%20Li%20Tou%20Ying%20.html#azimuthalEqualArea) - 方位角等面積投影。
- [d3.geo.azimuthalEquidistant.raw](Di%20Li%20Tou%20Ying%20.html#azimuthalEquidistant_raw) - 原始方位角等距投影。
- [d3.geo.azimuthalEquidistant](Di%20Li%20Tou%20Ying%20.html#azimuthalEquidistant) - 方位角等距投影。
- [d3.geo.conicConformal.raw](Di%20Li%20Tou%20Ying%20.html#conicConformal_raw) - 原始圓錐正形投影。
- [d3.geo.conicConformal](Di%20Li%20Tou%20Ying%20.html#conicConformal) - 圓錐正形投影。
- [d3.geo.conicEqualArea.raw](Di%20Li%20Tou%20Ying%20.html#conicEqualArea_raw) 原始圓錐等面積投影 (a.k.a. Albers)。
- [d3.geo.conicEqualArea](Di%20Li%20Tou%20Ying%20.html#conicEqualArea) 圓錐等面積投影 (a.k.a. Albers)。
- [d3.geo.conicEquidistant.raw](Di%20Li%20Tou%20Ying%20.html#conicEquidistant_raw) - 原始圓錐等距投影。
- [d3.geo.conicEquidistant](Di%20Li%20Tou%20Ying%20.html#conicEquidistant) - 圓錐等距投影。
- [d3.geo.equirectangular.raw](Di%20Li%20Tou%20Ying%20.html#equirectangular_raw) - 原始等角投影(普通圓柱投影)。
- [d3.geo.equirectangular](Di%20Li%20Tou%20Ying%20.html#equirectangular) - 等角投影(普通圓柱投影)。
- [d3.geo.gnomonic.raw](Di%20Li%20Tou%20Ying%20.html#gnomonic_raw) - 原始球心投影。
- [d3.geo.gnomonic](Di%20Li%20Tou%20Ying%20.html#gnomonic) - 球心投影。
- [d3.geo.mercator.raw](Di%20Li%20Tou%20Ying%20.html#mercator_raw) - 原始墨卡托投影。
- [d3.geo.mercator](Di%20Li%20Tou%20Ying%20.html#mercator) - 球形墨卡托投影。
- [d3.geo.orthographic.raw](Di%20Li%20Tou%20Ying%20.html#orthographic_raw) - 原始方位角直角投影。
- [d3.geo.orthographic](Di%20Li%20Tou%20Ying%20.html#orthographic) - 方位角直角投影。
- [d3.geo.projectionMutator](Di%20Li%20Tou%20Ying%20.html#projectionMutator) - 從可變的原始投影創建一個標準投影。
- [d3.geo.projection](Di%20Li%20Tou%20Ying%20.html#projection) - 從原始投影創建一個標準投影。
- [d3.geo.stereographic.raw](Di%20Li%20Tou%20Ying%20.html#stereographic_raw) - 原始方位角立體投影。
- [d3.geo.stereographic](Di%20Li%20Tou%20Ying%20.html#stereographic) - 方位角立體投影。
- [d3.geo.transverseMercator.raw](Di%20Li%20Tou%20Ying%20.html#transverseMercator_raw) - 原始橫向墨卡托投影。
- [projection.center](Di%20Li%20Tou%20Ying%20.html#center) - 取得或設置投影的中心位置。
- [projection.clipAngle](Di%20Li%20Tou%20Ying%20.html#clipAngle) - get or set the radius of the projection’s clip circle.
- [projection.clipExtent](Di%20Li%20Tou%20Ying%20.html#clipExtent) - 取得或設置投影的視口剪切范圍(以像素為單位)。
- [projection.invert](Di%20Li%20Tou%20Ying%20.html#invert) - 為指定的位置反轉投影。
- [projection.precision](Di%20Li%20Tou%20Ying%20.html#precision) - 取得或設置自適應重采樣的精度閾值。
- [projection.rotate](Di%20Li%20Tou%20Ying%20.html#rotate) - 取得或設置投影的三軸旋轉角。
- [projection.scale](Di%20Li%20Tou%20Ying%20.html#scale) - 取得或設置投影的縮放系數。
- [projection.stream](Di%20Li%20Tou%20Ying%20.html#stream) - 包裝指定的流監聽器,投影輸入的幾何圖形。
- [projection.translate](Di%20Li%20Tou%20Ying%20.html#translate) - 取得或設置投影的平移位置。
- [projection](Di%20Li%20Tou%20Ying%20.html#_projection) - 投影指定的位置。
### [流](%E6%B5%81)
- [clipExtent.extent](Liu%20.html#clipExtent_extent) - 設置剪裁范圍。
- [d3.geo.clipExtent](Liu%20.html#clipExtent) - 流轉換剪切幾何圖形為給定的軸對齊矩形。
- [d3.geo.stream](Liu%20.html#stream) - 將GeoJSON對象轉換為幾何流。
- [d3.geo.transform](Liu%20.html#transform) - 轉換流幾何圖形。
- [stream.lineEnd](Liu%20.html#stream_lineEnd) - 表示線或者環的終點。
- [stream.lineStart](Liu%20.html#stream_lineStart) - 表示線或者環的起點。
- [stream.point](Liu%20.html#stream_point) - 表面*x*, *y* (可選的 *z*) 坐標。
- [stream.polygonEnd](Liu%20.html#stream_polygonEnd) - 表明多邊形的終點。
- [stream.polygonStart](Liu%20.html#stream_polygonStart) - 表明多邊形的起點。
- [stream.sphere](Liu%20.html#stream_sphere) - 表明一個球體。
- [transform.stream](Liu%20.html#transform_stream) - 包裝指定的流。
## [d3.geom (幾何)](%E5%87%A0%E4%BD%95)
### [泰森多邊形](%E6%B3%B0%E6%A3%AE%E5%A4%9A%E8%BE%B9%E5%BD%A2)
- [d3.geom.voronoi](Tai%20Sen%20Duo%20Bian%20Xing%20.html#voronoi) - 用默認的訪問器創建一個泰森多邊形布局。
- [voronoi.clipExtent](Tai%20Sen%20Duo%20Bian%20Xing%20.html#clipExtent) -取得或者設置鋪嵌的剪切范圍。
- [voronoi.links](Tai%20Sen%20Duo%20Bian%20Xing%20.html#links) - 計算Delaunay mesh為一個鏈接網絡。
- [voronoi.triangles](Tai%20Sen%20Duo%20Bian%20Xing%20.html#triangles) - 計算Delaunay mesh為一個三角形密鋪。
- [voronoi.x](Tai%20Sen%20Duo%20Bian%20Xing%20.html#x) - 取得或者設置每個點的x-坐標訪問器。
- [voronoi.y](Tai%20Sen%20Duo%20Bian%20Xing%20.html#y) - 取得或者設置每個點的y-坐標訪問器。
- [voronoi](Tai%20Sen%20Duo%20Bian%20Xing%20.html#_voronoi) - 為每個指定的點計算泰森多邊形密鋪。
### [四叉樹](%E5%9B%9B%E5%8F%89%E6%A0%91)
- [d3.geom.quadtree](Si%20Cha%20Shu%20.html#quadtree) - 為一個點數組創建一個四叉樹。
- [quadtree.add](Si%20Cha%20Shu%20.html#add) - 添加點到四叉樹中。
- [quadtree.find](Si%20Cha%20Shu%20.html#find) - 找到四叉樹中最近的點。
- [quadtree.visit](Si%20Cha%20Shu%20.html#visit) - 遞歸地遍歷四叉樹中的點。
### [多邊形](%E5%A4%9A%E8%BE%B9%E5%BD%A2)
- [d3.geom.polygon](Duo%20Bian%20Xing%20.html#polygon) - 由指定的點數組創建多邊形。
- [polygon.area](Duo%20Bian%20Xing%20.html#area) - 計算多邊形逆時針方向的面積。
- [polygon.centroid](Duo%20Bian%20Xing%20.html#centroid) - 計算多邊形的面積中心。
- [polygon.clip](Duo%20Bian%20Xing%20.html#clip) - 對這個多邊形進行執行的多邊形剪切。
### [凸包](%E8%B5%AB%E5%B0%94%E5%9B%BE)
- [d3.geom.hull](Tu%20Bao%20.html#hull) - 使用默認訪問器創建一個convex hull布局。
- [hull](Tu%20Bao%20.html#_hull) - 為給定的點數組計算convex hull。
- [hull.x](Tu%20Bao%20.html#x) - 取得或設置*x*-坐標訪問器。
- [hull.y](Tu%20Bao%20.html#y) - 取得或設置*y*-坐標訪問器。
## [d3.behavior (行為)](%E8%A1%8C%E4%B8%BA)
### [拖動](%E6%8B%96%E5%8A%A8)
- [d3.behavior.drag](Tuo%20Dong%20.html#drag) - 創建拖動行為。
- [drag.on](Tuo%20Dong%20.html#on) - 監聽拖動事件。
- [drag.origin](Tuo%20Dong%20.html#origin) - 設置拖動行為的原點。
### [縮放](%E7%BC%A9%E6%94%BE)
- [d3.behavior.zoom](Suo%20Fang%20.html#zoom) - 創建縮放行為。
- [zoom.center](Suo%20Fang%20.html#center) - 鼠標滾輪縮放的焦點。
- [zoom.duration](Suo%20Fang%20.html#duration) - 取得或設置雙擊事件的過渡持續的時間。
- [zoom.event](Suo%20Fang%20.html#event) - 設置完縮放比例或平移之后分發縮放事件。
- [zoom.on](Suo%20Fang%20.html#on) - 事件監聽器。
- [zoom.scaleExtent](Suo%20Fang%20.html#scaleExtent) - 可選參數,比例因子范圍。
- [zoom.scale](Suo%20Fang%20.html#scale) - 當前的比例因子。
- [zoom.size](Suo%20Fang%20.html#size) - 視口的大小。
- [zoom.translate](Suo%20Fang%20.html#translate) - 當前的平移偏移量。
- [zoom.x](Suo%20Fang%20.html#x) - 可選比例尺,其定義域綁定到視口的*x*范圍。
- [zoom.y](Suo%20Fang%20.html#y) - 可選比例尺,其定義域綁定到視口的*y*范圍。
- [zoom](Suo%20Fang%20.html#_zoom) - 給指定的元素應用縮放行為。