Método D3.js line.defined()

El método d3.line.defined() le permite especificar si hay datos definidos para un punto de datos determinado o no. Si este método devuelve falso, significa que el punto de datos existe; de ​​lo contrario, es verdadero.

Sintaxis:

d3.line.defined(data_point);

Parámetros: 

  • data_point: data_point a comprobar.

Valor devuelto: este método devuelve un valor booleano.

Ejemplo 1: En este ejemplo, omitiremos algunos puntos usando este método.

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
  <title>d3.line.defined()</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="400" height="400">
      </svg>
</center>
  <script>
var points = [
      {xpoint: 25,  ypoint: 150},
      {xpoint: 75,  ypoint: 85},
      {xpoint: 100, ypoint: 115},
      {xpoint: 125, ypoint: 55},
      {xpoint: 150, ypoint: 105},
      {xpoint: 175, ypoint: 25},
      {xpoint: 200, ypoint: 155},
      {xpoint: 225, ypoint: 15},
      {xpoint: 250, ypoint: 135},
    ];
  
var Gen = d3.line()
  .x((p) => p.xpoint)
  .y((p) => p.ypoint)
  .defined(((d, i) => i != 4));
  
d3.select("#gfg")
  .append("path")
  .attr("d", Gen(points))
  .attr("fill", "none")
  .attr("stroke", "green");
  
</script>
</body>
</html>

Producción:

Ejemplo 2: En este ejemplo, omitiremos puntos nulos usando este método.

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
  <title>d3.line.defined()</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="400" height="400">
    </svg>
</center>
  <script>
var points = [
      {xpoint: 25,  ypoint: 150},
      {xpoint: 75,  ypoint: null},
      {xpoint: 100, ypoint: 115},
      {xpoint: 125, ypoint: 55},
      {xpoint: 150, ypoint: null},
      {xpoint: 175, ypoint: 25},
      {xpoint: 200, ypoint: 155},
      {xpoint: 225, ypoint: 15},
      {xpoint: 250, ypoint: 135},
    ];
  
var Gen = d3.line()
  .x((p) => p.xpoint)
  .y((p) => p.ypoint)
  .defined(function (d) { return d.ypoint !== null; });
  
d3.select("#gfg")
  .append("path")
  .attr("d", Gen(points))
  .attr("fill", "none")
  .attr("stroke", "green");
  
</script>
</body>
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *