D3.js中的tickStep()函数用于返回数组中相邻刻度值之间的差。
用法:
tickStep(start,stop,count);
参数:此函数接受上述和以下所述的三个参数:
- start:它是我们希望数组元素所在的起始值,包括端点值。
- stop:它是我们希望数组元素包含的起始值,包含在内。
- count:它是我们在给定的起始和终止范围内所需的元素数。
返回值:它以浮点表示形式返回该步长值。
下面给出的是ticks()函数的一些示例
范例1:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>D3 tickStep() Function</title>
</head>
<body>
<!--fetching from CDN of D3.js -->
<script type = "text/javascript"
src = "https://d3js.org/d3.v4.min.js">
</script>
<script>
// Choosing 10 elements in a range
let step=d3.tickStep(10, 20, 10);
console.log("Difference between each tick value is:",step);
</script>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--fetching from CDN of D3.js -->
<script type = "text/javascript"
src = "https://d3js.org/d3.v4.min.js">
</script>
<script>
// Choosing 1000 elements in a range
let step=d3.tickStep(10, 15, 1000);
console.log("Difference between"+
" each tick value is:",step);
</script>
</body>
</html>
输出:
范例3:如果止损点少,则开始
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--fetching from CDN of D3.js -->
<script type = "text/javascript"
src = "https://d3js.org/d3.v4.min.js">
</script>
<script>
// Choosing 1000 elements in a range
let step=d3.tickStep(10, 5, 1000);
console.log("Difference between"+
" each tick value is:",step);
</script>
</body>
</html>
输出:
相关用法
- p5.js nfs()用法及代码示例
- p5.js nfp()用法及代码示例
- PHP each()用法及代码示例
- p5.js nf()用法及代码示例
- p5.js nfc()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- PHP end()用法及代码示例
- PHP next()用法及代码示例
- PHP key()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js box()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- d3.js d3.min()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js tickStep() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。