当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js line.x()用法及代码示例


d3.line.x() 方法设置或获取线的 x 访问点。如果提供了 x,它必须是一个数字或一个返回数字的函数。

用法:

d3.line.x(x-point);

参数:

  • x-point:此方法采用可以从点数组中设置的 x-point。

返回值:此方法返回行的 x 访问器点。

范例1:使用此方法设置 x-point。对于这里的 y-points,我们使用了 line.y() 函数。




<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
  <title>Line in D3.js</title>
</head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js">
</script>
  
<body>
    <h1 style="text-align:center;
               color:green;">
         GeeksforGeeks
   </h1>
  <center>
    <svg id="gfg" width="200" height="200">
  </svg>
</center>
  <script>
var points = [
  {xpoint:25,  ypoint:150},
  {xpoint:75,  ypoint:85},
  {xpoint:100, ypoint:115},
  {xpoint:175, ypoint:25}];
  
var Gen = d3.line()
  // Setting the x-point
  .x((p) => p.xpoint)
  .y((p) => p.ypoint);
  
d3.select("#gfg")
  .append("path")
  .attr("d", Gen(points))
  .attr("fill", "none")
  .attr("stroke", "green");
</script>
</body>
</html>

输出:

范例2:得到 x 点的函数。


<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
  <title>Line in D3.js</title>
</head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js">
</script>
  
<body>
    <h1 style="text-align:center; color:green;">
       GeeksforGeeks
    </h1>
  <center>
    <svg id="gfg" width="200" height="200"></svg>
</center>
  <script>
var points = [
  {xpoint:25,  ypoint:150},
  {xpoint:75,  ypoint:85},
  {xpoint:100, ypoint:115},
  {xpoint:175, ypoint:25}];
  
var Gen = d3.line()
  .x((p) => p.xpoint)
  .y((p) => p.ypoint);
  
d3.select("#gfg")
  .append("path")
  .attr("d", Gen(points))
  .attr("fill", "none")
  .attr("stroke", "green");
console.log(Gen.x());
console.log(Gen.x)
</script>
</body>
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 D3.js line.x() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。