d3.scaleTime()函数用于创建和返回具有特定域和范围的新时标。在此函数中,默认情况下禁用夹紧。
用法:
d3.scaleTime([[domain, ]range]);
参数:该函数接受上面提到和下面描述的两个参数。
- Domain:它是定义域值范围的整数数组。如果未指定,则默认值为[2000-01-01、2000-01-02]。
- Range:它是整数或字符串的数组。如果未指定,则默认值为[0,1]。
返回值:该函数返回一个函数。
范例1:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" path1tent=
"width=device-width,initial-scale=1.0"/>
<script src="https://d3js.org/d3.v4.min.js">
</script>
<script src="https://d3js.org/d3-color.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-interpolate.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-scale-chromatic.v1.min.js">
</script>
</head>
<body>
<h2 style="color:green">Geeks for geeks</h2>
<p>d3.scaleTime() Function</p>
<script>
var time = d3.scaleTime()
.domain([1, 10])
.range([10, 5]);
document.write("<h3>Type of d3.scaleTime() is:"
+ typeof (time) + "</h3>");
document.write("<h3>time(10):"
+ time(10) + "</h3>");
</script>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" path1tent=
"width=device-width, initial-scale=1.0"/>
<script src="https://d3js.org/d3.v4.min.js">
</script>
<script src="https://d3js.org/d3-color.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-interpolate.v1.min.js">
</script>
<script src=
"https://d3js.org/d3-scale-chromatic.v1.min.js">
</script>
</head>
<body>
<h2 style="color:green;">Geeks for geeks</h2>
<p>d3.scaleTime() Function </p>
<script>
var time = d3.scaleTime()
.domain([1, 10])
.range([1, 100])
document.write("<h3>time(1):" + time(1) + "</h3>")
document.write("<h3>time(2):" + time(2) + "</h3>")
document.write("<h3>time(3):" + time(3) + "</h3>")
document.write("<h3>time(4):" + time(4) + "</h3>")
</script>
</body>
</html>
输出:
相关用法
- d3.js scaleTime time()用法及代码示例
- p5.js pan()用法及代码示例
- d3.js d3.mean()用法及代码示例
- PHP max( )用法及代码示例
- PHP ord()用法及代码示例
- PHP min( )用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- p5.js nf()用法及代码示例
- d3.js now()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- d3.js d3.min()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- p5.js nfs()用法及代码示例
- p5.js arc()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js scaleTime() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。