El método d3.area.y1() se usa para configurar el descriptor de acceso y1 al argumento que se le pasa, que puede ser un número o una función que devuelve un número, este es el segundo punto o nuestros límites superiores.
Sintaxis:
d3.area.y1(y1_point)
Parámetros: Esta función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación.
- y1_point: este parámetro es un punto límite inferior de un número o una función que devuelve un número.
Valor devuelto: este método no devuelve ningún valor.
Ejemplo 1:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src= "https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js"> </script> </head> <body> <h1 style="text-align: center; color: green;"> GeeksforGeeks </h1> <h3 style="text-align: center;"> D3.js | d3.area.y1() Method </h3> <center> <svg id="gfg" width="200" height="200"> </svg> </center> <script> var data = [ {x: 50, y: 10}, {x: 150, y: 30}, {x: 200, y: 150}, {x: 250, y: 10}, {x: 300, y: 150}, {x: 350, y: 50}, {x: 400, y: 190}]; var xScale = d3.scaleLinear().domain([0, 8]).range([25, 200]); var yScale = d3.scaleLinear().domain([0, 20]).range([200, 25]); var Gen = d3.area() .x((p) => p.x) .y0((p) => p.y*2) // Using area.y1() method .y1((p) => p.y*4); d3.select("#gfg") .append("path") .attr("d", Gen(data)) .attr("fill", "green") .attr("stroke", "black"); </script> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src= "https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js"> </script> </head> <body> <h1 style="text-align: center; color: green;"> GeeksforGeeks </h1> <h3 style="text-align: center;"> D3.js | d3.area.y1() Method </h3> <center> <svg id="gfg" width="250" height="200"> </svg> </center> <script> var points = [ {xpoint: 25, ypoint: 150}, {xpoint: 75, ypoint: 50}, {xpoint: 100, ypoint: 150}, {xpoint: 100, ypoint: 50}, {xpoint: 200, ypoint: 150}]; var Gen = d3.area() .x((p) => p.xpoint) .y0((p) => p.ypoint/2) // Setting upper bounds .y1((p) => p.ypoint); d3.select("#gfg") .append("path") .attr("d", Gen(points)) .attr("fill", "green") .attr("stroke", "black"); </script> </body> </html>
Producción: